From 598f0490a41afd12d0cbb3b0f4a654126b4e4872 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:57:14 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6a0023c..34e6532 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Heart, CheckCircle } from "lucide-react"; +import { Heart } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -18,7 +18,7 @@ export default function HomePage() { { name: "Pricing", id: "/pricing" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "contact-lead" }, ]; const footerColumns = [ @@ -35,7 +35,7 @@ export default function HomePage() { { label: "About Us", href: "/about" }, { label: "Testimonials", href: "#testimonials" }, { label: "Pricing", href: "/pricing" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "#contact-lead" }, ], }, { @@ -43,7 +43,7 @@ export default function HomePage() { { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Accessibility", href: "#" }, - { label: "Contact Us", href: "#contact" }, + { label: "Contact Us", href: "#contact-lead" }, ], }, ]; -- 2.49.1 From e7a162dc9c221aa07da3df1a5c0de1c433d1e187 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:57:15 +0000 Subject: [PATCH 2/2] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 68860d9..9521bf8 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -5,7 +5,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; import FooterBase from "@/components/sections/footer/FooterBase"; -import ContactText from "@/components/sections/contact/ContactText"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; import { Zap, Sparkles } from "lucide-react"; export default function PricingPage() { @@ -112,15 +112,15 @@ export default function PricingPage() {
- console.log("Contact request:", email)} />
-- 2.49.1