📄 Huge intl feature
This commit is contained in:
10
app/[locale]/blog/page.tsx
Normal file
10
app/[locale]/blog/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { getAllPosts } from '@/lib/markdown'
|
||||
import BlogPageClient from './blog-client'
|
||||
import {setRequestLocale} from 'next-intl/server'
|
||||
|
||||
export default async function BlogPage() {
|
||||
const posts = await getAllPosts()
|
||||
const allTags = Array.from(new Set(posts.flatMap(post => post.frontmatter.tags))).sort()
|
||||
|
||||
return <BlogPageClient posts={posts} allTags={allTags} />
|
||||
}
|
||||
Reference in New Issue
Block a user