diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index b0c9a40..d41d689 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,42 +1,40 @@ "use client"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Zap, Sparkles, Crown, CreditCard } from "lucide-react"; import Link from "next/link"; -import { CreditCard, Zap, Crown } from "lucide-react"; export default function PricingPage() { const navItems = [ - { name: "Features", id: "features" }, - { name: "How It Works", id: "how-it-works" }, - { name: "Pricing", id: "pricing" }, - { name: "Contact", id: "contact" }, + { name: "Features", id: "/" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Pricing", id: "#pricing" }, + { name: "Contact", id: "#contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Features", href: "/" }, - { label: "Pricing", href: "/pricing" }, - { label: "How It Works", href: "/" }, + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "How It Works", href: "#how-it-works" }, { label: "API Docs", href: "#" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -61,16 +59,37 @@ export default function PricingPage() {