diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 93f9422..9ae8c49 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -6,6 +6,19 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function CartPage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Planner", id: "/planner" }, + { name: "Reminders", id: "/reminders" }, + { name: "Features", id: "/#features" }, + { name: "About", id: "/#about" }, + { name: "Pricing", id: "/#pricing" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Newsletter", id: "/#newsletter" }, + { name: "Contact", id: "/#contact" } + ]; + return ( @@ -58,23 +52,23 @@ export default function CartPage() { columns={[ { title: "Product", items: [ - { label: "Features", href: "#features"}, - { label: "Pricing", href: "#pricing"}, + { label: "Features", href: "/#features"}, + { label: "Pricing", href: "/#pricing"}, { label: "Integrations", href: "#"}, { label: "Shop", href: "/shop"} ], }, { title: "Company", items: [ - { label: "About Us", href: "#about"}, - { label: "Testimonials", href: "#testimonials"}, + { label: "About Us", href: "/#about"}, + { label: "Testimonials", href: "/#testimonials"}, { label: "Careers", href: "#"}, ], }, { title: "Support", items: [ - { label: "FAQ", href: "#faq"}, - { label: "Contact Us", href: "#contact"}, + { label: "FAQ", href: "/#faq"}, + { label: "Contact Us", href: "/#contact"}, { label: "Help Center", href: "#"}, { label: "Cart", href: "/cart"} ],