diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..5037d94 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Instagram, Facebook, Linkedin } from "lucide-react"; + +export default function ContactPage() { + return ( + + + + + {/* + Google Maps Integration: + Direct Google Maps integration requires custom code (e.g., an iframe or a map library component) + which falls outside the scope of prop-based component modifications allowed by the registry. + A dedicated component or custom HTML would be needed here to embed a map. + For example: +
+ +
+ */} + +
+
+ ); +}