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('title')}

{t('edited_at', { date: '19/11/2023' })}

{t('welcome')}

{t('collect.title')}

{t('collect.cookie.title')}

{t('collect.cookie.description')}

{t('collect.user.title')}

{t('collect.user.description')}

{t('data_use.title')}

{t('data_use.description')}

{t('data_storage.title')}

{t('data_storage.description')}

{t('data_storage.data_retention.title')}

{t('data_storage.data_retention.description')}

{t('user_rights.title')}

{t('user_rights.description')}

{t('gdpr.title')}

{t('gdpr.description')}

); } PrivacyPage.layout = (page: ReactNode) => ( ); export default PrivacyPage;