qui-sommes-nous page removed

This commit is contained in:
Owen Rees
2023-09-21 10:15:54 +02:00
parent 4d7a2ed151
commit 2d7269694c
2 changed files with 1 additions and 130 deletions
+1 -8
View File
@@ -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() {
>
<FaGithub />
</Link>
<Link
href="/qui-sommes-nous"
aria-label={t("contactAria")}
className="mr-4"
>
<FaInfoCircle />
</Link>
<Link
href="/contactez-nous"
aria-label={t("contactAria")}
-122
View File
@@ -1,122 +0,0 @@
import { useTranslations } from "next-intl";
import Link from "next-intl/link";
export default function About() {
const t = useTranslations("About");
return (
<section className="grid place-items-center bg-white pb-20 dark:bg-gray-800">
<div className="max-w-5xl px-4 py-8 lg:py-16">
<h2
className="mb-8 text-center text-4xl font-extrabold tracking-tight text-gray-900 dark:text-white"
data-test="header2"
>
{t("title")}
</h2>
<p className="mb-4 text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t("p1")}
</p>
<p className="mb-4 text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t.rich("p2", {
homeLink: (chunks) => (
<Link href="/" className="text-primary-600">
{chunks}
</Link>
),
})}
</p>
<p className="mb-4 text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t("p3")}
</p>
<h3
className="mb-4 mt-8 text-center text-2xl font-extrabold tracking-tight text-gray-900 dark:text-white"
data-test="header2"
>
{t("thanksTitle")}
</h3>
<ul className="mb-4 text-center text-primary-600">
<li>
<Link href="https://github.com/timothyarmes" target="_blank">
timothyarmes
</Link>
</li>
<li>
<Link href="https://github.com/AlvaroNW" target="_blank">
AlvaroNW
</Link>
</li>
<li>
<Link href="https://github.com/Florifourchette" target="_blank">
Florifourchette
</Link>
</li>
</ul>
<h3
className="mb-4 mt-8 text-center text-2xl font-extrabold tracking-tight text-gray-900 dark:text-white"
data-test="header2"
>
{t("techTitle")}
</h3>
<p className="mb-4 text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t.rich("techInfo", {
homeLink: (chunks) => (
<Link href="/" className="text-primary-600">
{chunks}
</Link>
),
})}
</p>
<ul className="mx-auto mb-4 flex max-w-lg justify-around text-primary-600">
<li>
<Link href="https://nextjs.org/" target="_blank">
NextJS
</Link>
</li>
<li>
<Link href="#" target="_blank">
Typescript
</Link>
</li>
<li>
<Link href="https://tailwindcss.com/" target="_blank">
Tailwind
</Link>
</li>
<li>
<Link href="https://mongodb.com/" target="_blank">
MongoDB
</Link>
</li>
</ul>
<p className="mb-4 text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t("techWith")}
</p>
<ul className="mx-auto mb-8 flex max-w-md justify-around text-primary-600">
<li>
<Link href="https://leafletjs.com/" target="_blank">
Leaflet
</Link>
</li>
<li>
<Link href="https://nodemailer.com/" target="_blank">
Nodemailer
</Link>
</li>
</ul>
<p className="text-center font-light text-gray-500 dark:text-gray-400 md:text-xl">
{t.rich("contribInfo", {
link: (chunks) => (
<Link
href="https://github.com/TheRealOwenRees/echecsfrance"
target="_blank"
className="text-primary-600"
>
{chunks}
</Link>
),
})}
</p>
</div>
</section>
);
}