From 6952aed6a5da822c4cde7b5fa272dec5c8c1058a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 13:40:50 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 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..8f0f4ab --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,40 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file