import { Navigation } from "@/components/navigation"; import { BlogCard } from "@/components/blog-card"; import { getBlogPosts } from "@/lib/content"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Blog", description: "Read my latest blog posts about web development", }; export default function BlogPage() { const posts = getBlogPosts(); return (

Blog

Thoughts, tutorials, and insights about web development

{posts.map((post) => ( ))}
); }