From 798b9edc44f3ecc176a12e16fbf8e81231509a93 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:06:24 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 64 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 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..401b2c2 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,64 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Mail, Rocket } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log('Contact form submitted:', email)} + /> +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From 407345b33c049f42f59adbb0897d54e341ea2cfe Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:06:24 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e0c59a8..85761b5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Process", id: "process" }, { name: "For", id: "for" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]} /> @@ -48,8 +48,8 @@ export default function LandingPage() { tag="Customer Acquisition Engine" tagIcon={Zap} buttons={[ - { text: "Get Your Free Demo Website", href: "contact" }, - { text: "Book a Call", href: "contact" } + { text: "Get Your Free Demo Website", href: "/contact" }, + { text: "Book a Call", href: "/contact" } ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-modern-clean-website-design-mockup-dis-1773240171755-25981f6a.png" imageAlt="High-converting website design mockup" @@ -170,17 +170,17 @@ export default function LandingPage() { plans={[ { id: "starter", badge: "Good for Beginners", badgeIcon: Sparkles, - price: "$200/mo", subtitle: "Fresh creative angles monthly", buttons: [{ text: "Get Started", href: "contact" }], + price: "$200/mo", subtitle: "Fresh creative angles monthly", buttons: [{ text: "Get Started", href: "/contact" }], features: ["4-6 ad variations", "Multiple hooks and angles", "Primary ad text and headlines", "Correct ad sizes and formats", "Ready to upload"] }, { id: "professional", badge: "Most Popular", badgeIcon: Star, - price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "contact" }], + price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "/contact" }], features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"] }, { id: "enterprise", badge: "For Scaling Brands", badgeIcon: Zap, - price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "contact" }], + price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/contact" }], features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support", "Quarterly strategy sessions"] } ]} @@ -246,8 +246,8 @@ export default function LandingPage() { title="Start Getting More Customers Today" description="Let's discuss your customer acquisition goals and build a strategy that brings you results. Whether you need a website, ads, creative, or a complete system, we're ready to help." buttons={[ - { text: "Request Your Free Demo Website", href: "contact" }, - { text: "Schedule a Call", href: "contact" } + { text: "Request Your Free Demo Website", href: "/contact" }, + { text: "Schedule a Call", href: "/contact" } ]} background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} @@ -263,4 +263,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1