--- import { SITE } from '@/consts' import { getAllPosts } from '@/lib/data-utils' interface Props { title?: string description?: string } const { title = SITE.title, description = SITE.description } = Astro.props const image = new URL('/ogImage.png', Astro.site).toString() const posts = await getAllPosts() ---