-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrige les pages cgu, cookies et accessibilité du site
- Loading branch information
Showing
6 changed files
with
51 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use client'; | ||
|
||
import Section from '@tet/site/components/sections/Section'; | ||
import Content from './accessibilite.mdx'; | ||
|
||
const AccessibiliteContent = () => { | ||
return ( | ||
<Section> | ||
<h1 className="fr-header__body">Déclaration d’accessibilité</h1> | ||
<Content /> | ||
</Section> | ||
); | ||
}; | ||
|
||
export default AccessibiliteContent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use client'; | ||
|
||
import Section from '@tet/site/components/sections/Section'; | ||
import CGU from './cgu.mdx'; | ||
|
||
const CguContent = () => { | ||
return ( | ||
<Section> | ||
<h1 className="fr-header__body">Conditions générales d’utilisation</h1> | ||
<CGU /> | ||
</Section> | ||
); | ||
}; | ||
|
||
export default CguContent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/site/app/politique-des-cookies/CookiesContent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use client'; | ||
|
||
import Section from '@tet/site/components/sections/Section'; | ||
import Cookies from './cookies.mdx'; | ||
|
||
const CookiesContent = () => { | ||
return ( | ||
<Section> | ||
<h1 className="fr-header__body">Politique des cookies</h1> | ||
<Cookies /> | ||
</Section> | ||
); | ||
}; | ||
|
||
export default CookiesContent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters