diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 0917a6b..616d65c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,29 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function ContactPage() { + const navLinks = [ + { name: "الرئيسية", id: "/" }, + { name: "المدونة", id: "/blog" }, + { name: "سياسة الخصوصية", id: "/privacy-policy" }, + { name: "تواصل معنا", id: "/contact" }, + ]; + return ( - - + + + + + + ); } \ No newline at end of file