mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 23:15:36 +00:00
feat: bring back legal pages
This commit is contained in:
44
inertia/pages/privacy.tsx
Normal file
44
inertia/pages/privacy.tsx
Normal file
@@ -0,0 +1,44 @@
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import LegalContentLayout from '~/components/layouts/legal_content_layout';
|
||||
|
||||
export default function TermsPage() {
|
||||
const { t } = useTranslation('privacy');
|
||||
return (
|
||||
<LegalContentLayout>
|
||||
<h1>{t('title')}</h1>
|
||||
<p>{t('edited_at', { date: '19/11/2023' })}</p>
|
||||
<p>{t('welcome')}</p>
|
||||
|
||||
<h2>{t('collect.title')}</h2>
|
||||
<h3>{t('collect.cookie.title')}</h3>
|
||||
<p>{t('collect.cookie.description')}</p>
|
||||
|
||||
<h3>{t('collect.user.title')}</h3>
|
||||
<p>{t('collect.user.description')}</p>
|
||||
<ul>
|
||||
{(
|
||||
t('collect.user.fields', {
|
||||
returnObjects: true,
|
||||
}) as Array<string>
|
||||
).map((field) => (
|
||||
<li key={field}>{field}</li>
|
||||
))}
|
||||
</ul>
|
||||
|
||||
<h2>{t('data_use.title')}</h2>
|
||||
<p>{t('data_use.description')}</p>
|
||||
|
||||
<h2>{t('data_storage.title')}</h2>
|
||||
<p>{t('data_storage.description')}</p>
|
||||
|
||||
<h3>{t('data_storage.data_retention.title')}</h3>
|
||||
<p>{t('data_storage.data_retention.description')}</p>
|
||||
|
||||
<h2>{t('user_rights.title')}</h2>
|
||||
<p>{t('user_rights.description')}</p>
|
||||
|
||||
<h2>{t('gdpr.title')}</h2>
|
||||
<p>{t('gdpr.description')}</p>
|
||||
</LegalContentLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user