diff --git a/app/[locale]/about/page.tsx b/app/[locale]/about/page.tsx new file mode 100644 index 0000000..bc64bb6 --- /dev/null +++ b/app/[locale]/about/page.tsx @@ -0,0 +1,163 @@ +import { getTranslations } from "next-intl/server"; +import { Link } from "@/lib/navigation"; + +interface AboutPageProps { + params: Promise<{ locale: string }>; +} + +export default async function AboutPage({ params }: AboutPageProps) { + const { locale } = await params; + const t = await getTranslations({ locale, namespace: "About" }); + + const sheetUrl = + "https://docs.google.com/spreadsheets/d/1LuMkDsnidlvMtzzSqwrz-GACnqMaqzs-VBa-ZK0nZeI/edit?usp=sharing"; + + return ( +
+

{t("title")}

+

{t("intro")}

+ +
+

+ {t("projectTitle")} +

+

{t("projectPrivateNote")}

+

{t("projectIdea")}

+
+ +
+

+ {t("imprintTitle")} +

+

+ {t("imprintOperator")} +

+

Max Mustermann

+

Musterstraße 1

+

12345 Musterstadt

+

{t("imprintCountry")}

+

+ {t("imprintEmailLabel")}{" "} + kontakt@example.com +

+

+ {t("imprintDisclaimer")} +

+
+ +
+

+ {t("costsTitle")} +

+

{t("costsIntro")}

+ +

+ {t.rich("costsSheetLinkText", { + link: (chunks) => ( + + {chunks} + + ), + })} +

+

+ {t("costsSheetPrivacyNote")} +

+
+