- Extract all privacy-policy text content into messages/en.json and messages/hr.json - Add complete Croatian translation for privacy policy - Update privacy-policy page to use next-intl translations with t.rich() - Rename component from ConsentPage to PrivacyPolicyPage for clarity - Replace hardcoded text with translation keys for full i18n support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
import { Main } from "@/app/ui/Main";
|
|
import { getTranslations } from "next-intl/server";
|
|
|
|
const PrivacyPolicyPage = async () => {
|
|
const t = await getTranslations("privacy-policy-page");
|
|
|
|
const richTextFormat = {
|
|
strong: (chunks: React.ReactNode) => <strong>{chunks}</strong>,
|
|
a: (chunks: React.ReactNode) => <a href="mailto:support@rezije.app">{chunks}</a>
|
|
};
|
|
|
|
return (
|
|
<Main>
|
|
<article className="prose container mx-auto px-6">
|
|
<h1>{t("title")}</h1>
|
|
|
|
<h2>{t("section-1.heading")}</h2>
|
|
<p>{t("section-1.content")}</p>
|
|
|
|
<h2>{t("section-2.heading")}</h2>
|
|
<ol>
|
|
<li>{t.rich("section-2.item-1", richTextFormat)}</li>
|
|
<li>{t.rich("section-2.item-2", richTextFormat)}</li>
|
|
</ol>
|
|
|
|
<h2>{t("section-3.heading")}</h2>
|
|
<ol>
|
|
<li>{t.rich("section-3.item-1", richTextFormat)}</li>
|
|
<li>{t.rich("section-3.item-2", richTextFormat)}</li>
|
|
</ol>
|
|
|
|
<h2>{t("section-4.heading")}</h2>
|
|
<p>{t("section-4.content")}</p>
|
|
|
|
<h2>{t("section-5.heading")}</h2>
|
|
<p>{t("section-5.content")}</p>
|
|
|
|
<h2>{t("section-6.heading")}</h2>
|
|
<p>{t("section-6.content")}</p>
|
|
|
|
<h2>{t("section-7.heading")}</h2>
|
|
<p>{t("section-7.content")}</p>
|
|
|
|
<h2>{t("section-8.heading")}</h2>
|
|
<p>{t("section-8.content")}</p>
|
|
|
|
<h2>{t("section-9.heading")}</h2>
|
|
<p>{t("section-9.content")}</p>
|
|
|
|
<h2>{t("section-10.heading")}</h2>
|
|
<p>{t.rich("section-10.content", richTextFormat)}</p>
|
|
|
|
<h2>{t("section-11.heading")}</h2>
|
|
<p>{t("section-11.content")}</p>
|
|
</article>
|
|
</Main>
|
|
);
|
|
};
|
|
|
|
export default PrivacyPolicyPage;
|