import { Main } from "@/app/ui/Main"; import { getTranslations } from "next-intl/server"; import Link from "next/link"; const TermsPage = async () => { const t = await getTranslations("terms-of-service-page"); const richTextFormat = { strong: (chunks: React.ReactNode) => {chunks}, emailLink: (chunks: React.ReactNode) => {chunks} }; return (

{t("title")}

{t("section-1.heading")}

{t("section-1.content")}

{t("section-2.heading")}

  1. {t.rich("section-2.item-1", richTextFormat)}
  2. {t.rich("section-2.item-2", richTextFormat)}
  3. {t.rich("section-2.item-3", richTextFormat)}
  4. {t.rich("section-2.item-4", richTextFormat)}

{t("section-3.heading")}

  1. {t.rich("section-3.item-1", richTextFormat)}
  2. {t.rich("section-3.item-2", richTextFormat)}
  3. {t.rich("section-3.item-3", richTextFormat)}
  4. {t.rich("section-3.item-4", richTextFormat)}

{t("section-4.heading")}

{t("section-4.paragraph-1")}

{t("section-4.paragraph-2")}

{t("section-5.heading")}

  1. {t.rich("section-5.item-1", richTextFormat)}
  2. {t.rich("section-5.item-2", richTextFormat)}
  3. {t.rich("section-5.item-3", richTextFormat)}
  4. {t.rich("section-5.item-4", richTextFormat)}

{t("section-6.heading")}

{t.rich("section-6.paragraph-1", richTextFormat)}

{t("section-6.paragraph-2")}

{t("section-6.paragraph-3")}

{t("section-6.paragraph-4")}

{t("section-6.paragraph-5")}

{t("section-7.heading")}

{t("section-7.paragraph-1")}

{t.rich("section-7.paragraph-2", richTextFormat)}

{t("section-7.paragraph-3")}

{t("section-8.heading")}

{t("section-8.intro")}

  1. {t("section-8.item-1")}
  2. {t("section-8.item-2")}
  3. {t("section-8.item-3")}
  4. {t("section-8.item-4")}
  5. {t("section-8.item-5")}
  6. {t("section-8.item-6")}

{t("section-9.heading")}

{t("section-9.paragraph-1")}

{t("section-9.paragraph-2")}

{t("section-10.heading")}

  1. {t.rich("section-10.item-1", richTextFormat)}
  2. {t.rich("section-10.item-2", richTextFormat)}
  3. {t.rich("section-10.item-3", richTextFormat)}
  4. {t.rich("section-10.item-4", richTextFormat)}

{t("section-11.heading")}

{t("section-11.paragraph-1")}

{t("section-11.paragraph-2")}

{t("section-11.paragraph-3")}

{t("section-11.paragraph-4")}

{t("section-12.heading")}

{t("section-12.paragraph-1")}

{t("section-12.paragraph-2")}

{t("section-13.heading")}

{t.rich("section-13.paragraph-1", richTextFormat)}

{t("section-13.paragraph-2")}

{t("section-13.paragraph-3")}

{t("section-14.heading")}

{t("section-14.paragraph-1")}

{t("section-14.paragraph-2")}

{t("section-15.heading")}

{t("section-15.paragraph-1")}

{t("section-15.paragraph-2")}

{t("section-15.paragraph-3")}

{t("section-16.heading")}

{t("section-16.content")}

{t("section-17.heading")}

{t("section-17.content")}

{t("section-18.heading")}

{t("section-18.paragraph-1")}

{t("section-18.paragraph-2")}

{t("section-18.paragraph-3")}

{t("section-19.heading")}

{t("section-19.content")}

{t("section-20.heading")}

  1. {t.rich("section-20.item-1", richTextFormat)}
  2. {t.rich("section-20.item-2", richTextFormat)}

{t("section-21.heading")}

{t("section-21.content")}

{t("section-22.heading")}

{t.rich("section-22.content", richTextFormat)}

); }; export default TermsPage;