From 5909a9b811be20e7e6f8dd530fc317ab8a14ac74 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:38:32 +0000 Subject: [PATCH 1/6] Add src/app/about/page.tsx --- src/app/about/page.tsx | 164 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..6d0831d --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,164 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Heart, Clock, Users } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file From c3638fd073a0de9632ef4c58bcb0fb7d8efc429b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:38:32 +0000 Subject: [PATCH 2/6] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 262 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..5db380c --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,262 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { MapPin, Phone, Clock } from 'lucide-react'; + +export default function ContactPage() { + const handleFormSubmit = (e: React.FormEvent) => { + e.preventDefault(); + // Form submission logic would go here + console.log('Form submitted'); + }; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+
+

Formulaire de Contact

+

Remplissez le formulaire ci-dessous et nous vous répondrons dans les plus brefs délais.

+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +