- {t('Address:')} DINUM, 20 avenue de Ségur 75007
- Paris
-
-
-
- {t('We try to respond within 2 working days.')}
-
-
-
- {t('Remedies')}
-
-
- {t('This procedure should be used in the following case:')}{' '}
- {t(
- 'you have reported to the website manager a lack of accessibility that prevents you from accessing content or one of the services of the portal and you have not received a satisfactory response.',
- )}
-
-
- {t('You can:')}
-
-
-
-
- Write a message to the
-
- Defender of Rights
-
-
-
-
-
- Contact the delegate of the
-
- Defender of Rights in your region
-
-
-
-
- {t('Send a letter by post (free of charge, no stamp needed):')}{' '}
-
- {t(
- 'Defender of Rights - Free response - 71120 75342 Paris CEDEX 07',
- )}
-
-
-
-
-
- );
-};
-
-Page.getLayout = function getLayout(page: ReactElement) {
- return {page};
-};
-
-export default Page;
diff --git a/src/frontend/apps/impress/src/pages/legal-notice/index.tsx b/src/frontend/apps/impress/src/pages/legal-notice/index.tsx
deleted file mode 100644
index 0abbf939..00000000
--- a/src/frontend/apps/impress/src/pages/legal-notice/index.tsx
+++ /dev/null
@@ -1,72 +0,0 @@
-import { ReactElement } from 'react';
-import { useTranslation } from 'react-i18next';
-
-import { Box, Text, TextStyled } from '@/components';
-import { useCunninghamTheme } from '@/cunningham';
-import { PageLayout } from '@/layouts';
-import { NextPageWithLayout } from '@/types/next';
-
-const Page: NextPageWithLayout = () => {
- const { t } = useTranslation();
- const { colorsTokens } = useCunninghamTheme();
-
- return (
-
-
- {t('Legal notice')}
-
-
-
- {t('Publisher')}
-
-
- {t(
- 'French Interministerial Directorate for Digital Affairs (DINUM), 20 avenue de Ségur 75007 Paris.',
- )}
-
-
- {t('Publication Director')}
-
-
- {t('Stéphanie Schaer: Interministerial Digital Director (DINUM).')}
-
-
- {t('Copyright')}
-
-
- {t('Illustration:')}{' '}
-
- DINUM
-
-
-
- {t('More info?')}
-
-
- {t(
- 'The team in charge of the digital workspace "La Suite numérique" can be contacted directly at',
- )}{' '}
-
- lasuite@modernisation.gouv.fr
-
- .
-
-
-
- );
-};
-
-Page.getLayout = function getLayout(page: ReactElement) {
- return {page};
-};
-
-export default Page;
diff --git a/src/frontend/apps/impress/src/pages/personal-data-cookies/index.tsx b/src/frontend/apps/impress/src/pages/personal-data-cookies/index.tsx
deleted file mode 100644
index 1a064006..00000000
--- a/src/frontend/apps/impress/src/pages/personal-data-cookies/index.tsx
+++ /dev/null
@@ -1,66 +0,0 @@
-import { ReactElement } from 'react';
-import { useTranslation } from 'react-i18next';
-
-import { Box, Text } from '@/components';
-import { useCunninghamTheme } from '@/cunningham';
-import { PageLayout } from '@/layouts';
-import { NextPageWithLayout } from '@/types/next';
-
-const Page: NextPageWithLayout = () => {
- const { t } = useTranslation();
- const { colorsTokens } = useCunninghamTheme();
-
- return (
-
-
- {t('Personal data and cookies')}
-
-
-
- {t('Cookies placed')}
-
-
- {t(
- 'This site places a small text file (a "cookie") on your computer when you visit it.',
- )}
- {t(
- 'This allows us to measure the number of visits and understand which pages are the most viewed.',
- )}
-
-
- {t('You can oppose the tracking of your browsing on this website.')}
- {t(
- 'This will protect your privacy, but will also prevent the owner from learning from your actions and creating a better experience for you and other users.',
- )}
-
-
- {t('This site does not display a cookie consent banner, why?')}
-
-
- {t(
- "It's true, you didn't have to click on a block that covers half the page to say you agree to the placement of cookies — even if you don't know what it means!",
- )}
-
-
- {t(
- 'Nothing exceptional, no special privileges related to a .gouv.fr.',
- )}
- {t(
- 'We simply comply with the law, which states that certain audience measurement tools, properly configured to respect privacy, are exempt from prior authorization.',
- )}
-
-
-
- );
-};
-
-Page.getLayout = function getLayout(page: ReactElement) {
- return {page};
-};
-
-export default Page;