From 5a23ec4383072ddfba25190a71e0f3d62991e86c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 15:14:35 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 98 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 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..eb6005c --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,98 @@ +"use client" + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +}