--- import { Picture } from '@astrojs/image/components'; import { findImage } from '~/utils/images'; import { getPermalink } from '~/utils/permalinks'; import type { Post } from '~/utils/posts'; export interface Props { post: Post; } const { post } = Astro.props; const image = await findImage(post.image); ---

{post.title}

{post.excerpt || post.description}