import { ReactNode } from 'react'; import { useTranslation } from 'react-i18next'; import LegalContentLayout from '~/components/layouts/legal_content_layout'; function PrivacyPage() { const { t } = useTranslation('privacy'); return ( <>
{t('edited_at', { date: '19/11/2023' })}
{t('welcome')}
{t('collect.cookie.description')}
{t('collect.user.description')}
{t('data_use.description')}
{t('data_storage.description')}
{t('data_storage.data_retention.description')}
{t('user_rights.description')}
{t('gdpr.description')}
> ); } PrivacyPage.layout = (page: ReactNode) => (