From 2d7269694c6ddc78ebdf6744f7d7f85a5576700e Mon Sep 17 00:00:00 2001 From: Owen Rees Date: Thu, 21 Sep 2023 10:15:54 +0200 Subject: [PATCH] qui-sommes-nous page removed --- app/[locale]/components/Footer.tsx | 9 +- app/[locale]/qui-sommes-nous/page.tsx | 122 -------------------------- 2 files changed, 1 insertion(+), 130 deletions(-) delete mode 100644 app/[locale]/qui-sommes-nous/page.tsx diff --git a/app/[locale]/components/Footer.tsx b/app/[locale]/components/Footer.tsx index 9333aa0..a0d385a 100644 --- a/app/[locale]/components/Footer.tsx +++ b/app/[locale]/components/Footer.tsx @@ -1,6 +1,6 @@ import { useTranslations } from "next-intl"; import Link from "next-intl/link"; -import { FaGithub, FaInfoCircle, FaRegEnvelope } from "react-icons/fa"; +import { FaGithub, FaRegEnvelope } from "react-icons/fa"; import ThemeSwitcher from "./ThemeSwitcher"; @@ -25,13 +25,6 @@ export default function Footer() { > - - - -
-

- {t("title")} -

-

- {t("p1")} -

-

- {t.rich("p2", { - homeLink: (chunks) => ( - - {chunks} - - ), - })} -

-

- {t("p3")} -

-

- {t("thanksTitle")} -

-
    -
  • - - timothyarmes - -
  • -
  • - - AlvaroNW - -
  • -
  • - - Florifourchette - -
  • -
-

- {t("techTitle")} -

-

- {t.rich("techInfo", { - homeLink: (chunks) => ( - - {chunks} - - ), - })} -

-
    -
  • - - NextJS - -
  • -
  • - - Typescript - -
  • -
  • - - Tailwind - -
  • -
  • - - MongoDB - -
  • -
-

- {t("techWith")} -

-
    -
  • - - Leaflet - -
  • -
  • - - Nodemailer - -
  • -
-

- {t.rich("contribInfo", { - link: (chunks) => ( - - {chunks} - - ), - })} -

-
- - ); -}