diff --git a/.socialgouv/chart/values.project.yaml b/.socialgouv/chart/values.project.yaml new file mode 100644 index 00000000..1c8f02e6 --- /dev/null +++ b/.socialgouv/chart/values.project.yaml @@ -0,0 +1,2 @@ +app: + probesPath: /healthz diff --git a/src/components/footer/body.tsx b/src/components/footer/body.tsx index 7c97efd4..ebf9e7c7 100644 --- a/src/components/footer/body.tsx +++ b/src/components/footer/body.tsx @@ -17,7 +17,9 @@ export const Body = (props: FooterBodySectionProps): JSX.Element => ( )} {props.links?.map((link, index) => ( - {link.title} + + {link.title} + ))} diff --git a/src/config/layout.ts b/src/config/layout.ts index e7a1532f..498c9678 100644 --- a/src/config/layout.ts +++ b/src/config/layout.ts @@ -115,7 +115,28 @@ export const footerTopSection: FooterTopSectionProps = { }; export const footerBodySection: FooterBodySectionProps = { - links, + links: [ + { + title: "gouvernement.fr", + href: "https://www.gouvernement.fr/", + }, + { + title: "service-public.fr", + href: "https://www.service-public.fr/", + }, + { + title: "legifrance.gouv.fr", + href: "https://www.legifrance.gouv.fr/", + }, + { + title: "data.gouv.fr", + href: "https://data.gouv.fr/", + }, + { + title: "solidarites-sante.gouv.fr", + href: "https://solidarites-sante.gouv.fr/", + }, + ], image: { alt: "", src: "https://dummyimage.com/100x80/000/fff.png&text=logo+1", @@ -147,7 +168,24 @@ export const footerPartnerSection: FooterPartnerSectionProps = { }; export const footerBottomSection: FooterBottomSectionProps = { - links, + links: [ + { + title: "Accessibilité : non conforme", + href: "/mention-legales#accessibilite", + }, + { + title: "Mentions légales", + href: "/mention-legales", + }, + { + title: "Conditions générales d'utilisation", + href: "/cgu", + }, + { + title: "Politique de confidentialité", + href: "/politique-confidentialite", + }, + ], version: process.env.NEXT_PUBLIC_APP_VERSION ?? "X.X.X", repositoryUrl: process.env.NEXT_PUBLIC_APP_REPOSITORY_URL ?? "", commitHash: process.env.NEXT_PUBLIC_APP_VERSION_COMMIT ?? "master",