From 758b2c7bfbc5614fa8ee1271ab9e48889e66505d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 23:28:51 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 59 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 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..3f24cb3 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const navItems = [ + { name: "À propos", href: "/#about" }, + { name: "Cours", href: "/#services" }, + { name: "Avis", href: "/#testimonials" }, + { name: "Contact", href: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} -- 2.49.1 From ac6d849c93d9309b72b10b6334e39373240625e9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 23:28:51 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 197 +++++++++++++++++++++++------------------------ 1 file changed, 98 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 225cca4..c806411 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,7 +17,7 @@ export default function PermitSchoolPage() { { name: "À propos", id: "about" }, { name: "Cours", id: "services" }, { name: "Avis", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Contact", href: "/contact" }, ]; return ( @@ -37,108 +37,107 @@ export default function PermitSchoolPage() { - - - - - +
+ +
+
+ +
+
+ +
+
+ +
-- 2.49.1