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

{t("badge")}

{t("title")}

{t("description")}

) }