From f086c434df97df98d39aab87ca30eb621a867d50 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 08:58:44 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 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..9d06569 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,42 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function ContactPage() { + return ( + + + +
+ + +
+ +
+
+ ); +} \ No newline at end of file