import { getTranslations } from "next-intl/server" export default async function AboutPage() { const t = await getTranslations("About") return (

{t("badge")}

{t("title")}

{t("description")}

) }