import { useTranslation } from 'react-i18next'; import SmallContentLayout from '~/layouts/small_content'; 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: React.ReactNode) => (