import Link from 'components/Link'; import { allPosts } from 'contentlayer/generated'; export const metadata = { title: 'Blog', description: 'Stay in the loop with all things Tabler. We provide regular updates on new features, changelogs, and news, ensuring you never miss any of our software developments.', }; export default async function BlogPage() { return ( <>
{allPosts.map((post, i) => (
{/*
{format(new Date(post.date), "d")}
{format(new Date(post.date), "MMM")}
*/}
{post.image && (
{post.title}
)}
{post.title && (

{post?.title}

)}

{post.summary}

{/* Read more */}
))}
); }