import { allPosts } from "content-collections"; import Image from "next/image"; import { IconRss } from "@tabler/icons-react"; import { Metadata } from "next"; export const metadata: Metadata = { title: "Techaro Blog", description: "What have we been up to?", }; export default function Posts() { return ( <>

Blog

All posts

Follow on RSS!
{allPosts.map((post) => (

{post.title}

{" -- "}

{post.summary}

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