From 758b2c7bfbc5614fa8ee1271ab9e48889e66505d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 23:28:51 +0000 Subject: [PATCH] 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 ( + + + +
+ +
+ +
+
+ ); +}