Update src/app/cart/page.tsx

This commit is contained in:
2026-05-30 13:57:03 +00:00
parent 4655ad0b67
commit 4f272d4878

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -22,26 +35,7 @@ export default function CartPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "#home"},
{
name: "Features", id: "#features"},
{
name: "About", id: "#about"},
{
name: "Pricing", id: "#pricing"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
{
name: "Shop", id: "/shop"},
{
name: "Cart", id: "/cart"}
]}
navItems={commonNavItems}
brandName="AI Planner Pro"
/>
</div>
@@ -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"}
],