From c6b3024d81861d6bc39f762bed756644b7ba9b56 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 20:56:18 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 54 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 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..33e2c50 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,54 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 7dc42511a3e76899260ceb41bc4dd0f079085dc8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 20:56:19 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 321 ++++------------------------------------------- 1 file changed, 24 insertions(+), 297 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1892e69..eda01df 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,22 +33,10 @@ export default function LandingPage() {
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- ); -} +} \ No newline at end of file -- 2.49.1