import Link from "next/link"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { getTranslations } from "next-intl/server"; export default async function ImprintPage() { const t = await getTranslations("ImprintPage"); return (
{t("title")}

{t("tmgInfo")}

{t("contactInfoTitle")}

{t("contactName")}

{t("contactStreet")}

{t("contactCity")}

{t("contactEmail")}

{t("contactPhone")}

{t("representedByTitle")}

{t("representedByName")}

{t("disclaimerTitle")}

{t("disclaimerText")}

); }