From 1af75482b8531bc3c0d773828bc372ece4b62511 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:37:16 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 106 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 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..133527d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Mail, Zap } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ { + console.log('Contact form submitted with email:', email); + // Handle form submission here + }} + /> +
+ + +
+ ); +} -- 2.49.1 From 65958036ab7c63186c935bf832a626121ab671aa Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:37:17 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8a323d9..45c4488 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,9 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Globe, Users, Zap } from 'lucide-react'; +import { Award, Globe, Users, Zap, Mail } from 'lucide-react'; export default function LandingPage() { return ( @@ -193,14 +194,19 @@ export default function LandingPage() {
- console.log('Submitted email:', email)} />
-- 2.49.1