From a48ea7d7e75776ad4e9631646a045996696d2781 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:55:50 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 41 +++++++++++++++++----------------------- 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 44d2e6f..68860d9 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -7,15 +7,14 @@ import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwent import FooterBase from "@/components/sections/footer/FooterBase"; import ContactText from "@/components/sections/contact/ContactText"; import { Zap, Sparkles } from "lucide-react"; -import Link from "next/link"; export default function PricingPage() { const navItems = [ - { name: "Services", id: "services" }, - { name: "Pricing", id: "pricing" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, ]; const footerColumns = [ @@ -30,9 +29,9 @@ export default function PricingPage() { { title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Testimonials", href: "#testimonials" }, + { label: "Testimonials", href: "/#testimonials" }, { label: "Pricing", href: "/pricing" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "/#contact" }, ], }, { @@ -40,7 +39,7 @@ export default function PricingPage() { { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Accessibility", href: "#" }, - { label: "Contact Us", href: "#contact" }, + { label: "Contact Us", href: "/#contact" }, ], }, ]; @@ -66,22 +65,19 @@ export default function PricingPage() { @@ -123,7 +116,7 @@ export default function PricingPage() { text="Still have questions about our pricing? Contact us to discuss a custom plan for your specific needs." animationType="entrance-slide" buttons={[ - { text: "Get in Touch", href: "#contact" }, + { text: "Get in Touch", href: "/#contact" }, { text: "Schedule Consultation", href: "tel:+1234567890" }, ]} background={{ variant: "sparkles-gradient" }} @@ -140,4 +133,4 @@ export default function PricingPage() { ); -} \ No newline at end of file +}