From cff8eb3b7ee71651a46a3defe8546cdc4f329846 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 09:03:16 +0000 Subject: [PATCH] Switch to version 3: added src/app/contact/page.tsx --- src/app/contact/page.tsx | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 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..6aeb012 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Phone, Facebook, Linkedin, Instagram } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log('Contact form submission:', email)} + className="py-20" + /> +
+ + +
+ ); +}