diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 485db5c..b87dcb3 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -2,10 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Sparkles, Headphones } from "lucide-react"; +import { CreditCard, Check } from "lucide-react"; export default function PricingPage() { return ( @@ -29,8 +28,8 @@ export default function PricingPage() { { name: "Features", id: "features" }, { name: "Why AirPods", id: "metrics" }, { name: "Support", id: "faq" }, - { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "/contact" }, + { name: "Pricing", id: "pricing" }, + { name: "Contact", id: "contact" }, ]} button={{ text: "Shop Now", href: "/" }} animateOnLoad={true} @@ -38,37 +37,28 @@ export default function PricingPage() {