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
+ }}
+ />
+
+
+
+
+ );
+}
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)}
/>