import { getBlogPosts } from "@repo/blog" import { BlogPosts } from "@repo/blog/BlogPosts" import { MainLayout } from "@repo/ui/Layout/MainLayout" import { Section, SectionDescription, SectionTitle } from "@repo/ui/Layout/Section" import { LOCALE_DEFAULT } from "@repo/utils/constants" import type { Metadata } from "next" 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, }, } } const BlogPage: React.FC = async () => { const posts = await getBlogPosts() return (
Blog {description}
) } export default BlogPage