import Link from 'next/link'; import { getAllPostsSorted } from '@/lib/posts'; import { siteConfig } from '@/lib/config'; export const metadata = { title: 'Blog' }; export default function BlogIndexPage() { const posts = getAllPostsSorted(); return (

Blog

); }