2
0
Files
bot/apps/landing-page/app/blog/page.tsx

14 lines
311 B
TypeScript
Raw Normal View History

2024-04-19 13:20:58 +02:00
import { getBlogPosts } from '@/app/db/blog'
import { Posts } from './Posts'
export const metadata = {
title: 'Blog',
description: 'Read my thoughts on software development, design, and more.',
}
export default function Home() {
const allBlogs = getBlogPosts()
return <Posts allBlogs={allBlogs} />
}