import { listPosts } from "@cms/db" import { Button } from "@cms/ui/button" import { getTranslations } from "next-intl/server" import { LanguageSwitcher } from "@/components/language-switcher" export const dynamic = "force-dynamic" export default async function HomePage() { const [posts, t] = await Promise.all([listPosts(), getTranslations("Home")]) return (

{t("badge")}

{t("title")}

{t("description")}

{t("latestPosts")}

) }