From 226b864d95bd570f8a0dfa8bbd27823ae0006c47 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 05:58:35 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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..d63bfb7 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,31 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + return ( + + + + + + + ); +} \ No newline at end of file