import { allBlogPosts } from 'content-collections'; import Image from 'next/image'; import Link from 'next/link'; const BlogPage = () => { return (

Blog

{allBlogPosts.map((post) => (
post cover image

{post.title}

{post.summary}

))}
); }; export default BlogPage;