14 lines
311 B
TypeScript
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} />
|
||
|
}
|