import { getBlogPosts } from "@repo/blog" import { BlogPosts } from "@repo/blog/BlogPosts" import { LOCALE_DEFAULT, type LocaleProps } from "@repo/i18n/config" import { Section, SectionDescription, SectionTitle, } from "@repo/ui/design/Section" import { MainLayout } from "@repo/ui/MainLayout" import type { Metadata } from "next" import { unstable_setRequestLocale } from "next-intl/server" const title = "Blog | Théo LUDWIG" const description = "The latest news about my journey of learning computer science." export const generateMetadata = async (): Promise => { return { title, description, openGraph: { title, description, locale: LOCALE_DEFAULT, }, twitter: { title, description, }, } } interface BlogPageProps extends LocaleProps {} const BlogPage: React.FC = async (props) => { const { params } = props // Enable static rendering unstable_setRequestLocale(params.locale) const posts = await getBlogPosts() return (
Blog {description}
) } export default BlogPage