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 (
+