feat: add legal pages for Terms of Service and Privacy Policy with localization support

This commit is contained in:
mlogclub
2026-05-30 20:38:14 +08:00
parent b44bb666c9
commit c2b6d595aa
7 changed files with 298 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
import { LegalDocumentPage } from "@/components/legal-document-page"
export default function PrivacyPage() {
return <LegalDocumentPage type="privacy" />
}
+5
View File
@@ -0,0 +1,5 @@
import { LegalDocumentPage } from "@/components/legal-document-page"
export default function TermsPage() {
return <LegalDocumentPage type="terms" />
}