23 lines
527 B
TypeScript
23 lines
527 B
TypeScript
import { getPosts } from '@/lib/posts'
|
|
import { PostList } from '@/components/blog/PostList'
|
|
import Template from './template'
|
|
|
|
export default async function HomePage() {
|
|
const posts = await getPosts()
|
|
|
|
return (
|
|
<Template>
|
|
<main className="max-w-4xl mx-auto px-6 py-12">
|
|
<header className="mb-16 text-center">
|
|
</header>
|
|
<section>
|
|
<h1 className="heading-xl text-ink mb-8">
|
|
Latest
|
|
</h1>
|
|
<PostList posts={posts} />
|
|
</section>
|
|
</main>
|
|
</Template>
|
|
)
|
|
}
|