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 ( + + + +
+ +
+ +
+
+ ); +} 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() { - - - - - +
+ +
+
+ +
+
+ +
+
+ +