2
0
Files
bot/apps/landing-page/app/blog/page.tsx
Baptiste Arnaud 6fe4e28bc3 📝 Add new blog structure
2024-04-19 13:20:58 +02:00

14 lines
311 B
TypeScript

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} />
}