From 562973a40119bb6bef2f587c13756a5b9e65bd77 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 22:05:16 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 82 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 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..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: +
+ +
+ */} + +
+
+ ); +}