From cdb70ca5ea57c6a9124c26ff686cce91cf7e03ff Mon Sep 17 00:00:00 2001 From: toine Date: Sun, 5 Oct 2025 15:14:24 +0200 Subject: [PATCH] ajout des images sur les services --- frontend/app/components/Contact.tsx | 2 +- frontend/app/components/Services.tsx | 12 +++++++++++- frontend/app/css/components.css | 4 ++++ frontend/app/favicon.ico | Bin 25931 -> 174138 bytes frontend/next.config.ts | 3 +++ frontend/public/images/consultance.webp | Bin 0 -> 56996 bytes frontend/public/images/unity.png | Bin 0 -> 61462 bytes 7 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 frontend/public/images/consultance.webp create mode 100644 frontend/public/images/unity.png diff --git a/frontend/app/components/Contact.tsx b/frontend/app/components/Contact.tsx index 5356921..0542115 100644 --- a/frontend/app/components/Contact.tsx +++ b/frontend/app/components/Contact.tsx @@ -66,7 +66,7 @@ export default function ContactComponent() { {data?.email ? ( ) : ( -

Une erreur est survenue. Vous pouvez tout de même me contacter directement par email : Me joindre par email

+

)} diff --git a/frontend/app/components/Services.tsx b/frontend/app/components/Services.tsx index 49b98b6..e95a4e3 100644 --- a/frontend/app/components/Services.tsx +++ b/frontend/app/components/Services.tsx @@ -1,3 +1,5 @@ +import Image from "next/image"; + async function GetServices() { const res = await fetch(`${process.env.BACKEND_URL}/services`, { cache: process.env.CACHE @@ -19,7 +21,15 @@ export default async function Services() {