import { allPosts } from "content-collections"; import Image from "next/image"; export default function Posts() { return ( <>

Blog

{allPosts.map((post) => (

{post.title}

{" -- "}

{post.summary}

{post.image && ( {post.imageDesc!} )}
))}
); }