diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index da36bea..e9da570 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -38,7 +38,8 @@ export default function ShopPage() { brandName="Coca-Cola" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "products" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, { name: "About", id: "about" }, { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, @@ -56,26 +57,26 @@ export default function ShopPage() { columns={[ { title: "Shop", items: [ - { label: "All Products", href: "#products" }, - { label: "Classic Coke", href: "#" }, - { label: "Diet Coke", href: "#" }, - { label: "Coke Zero", href: "#" } + { label: "All Products", href: "/shop" }, + { label: "Classic Coke", href: "/shop" }, + { label: "Diet Coke", href: "/shop" }, + { label: "Coke Zero", href: "/shop" } ] }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Our Heritage", href: "#" }, - { label: "Careers", href: "#" }, - { label: "Sustainability", href: "#" } + { label: "About Us", href: "about" }, + { label: "Our Heritage", href: "about" }, + { label: "Careers", href: "about" }, + { label: "Sustainability", href: "about" } ] }, { title: "Support", items: [ - { label: "Contact Us", href: "#contact" }, - { label: "FAQ", href: "#" }, - { label: "Shipping Info", href: "#" }, - { label: "Returns", href: "#" } + { label: "Contact Us", href: "contact" }, + { label: "FAQ", href: "/blog" }, + { label: "Shipping Info", href: "/shop" }, + { label: "Returns", href: "/shop" } ] }, { @@ -113,7 +114,8 @@ export default function ShopPage() { brandName="Coca-Cola" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "products" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, { name: "About", id: "about" }, { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, @@ -139,26 +141,26 @@ export default function ShopPage() { columns={[ { title: "Shop", items: [ - { label: "All Products", href: "#products" }, - { label: "Classic Coke", href: "#" }, - { label: "Diet Coke", href: "#" }, - { label: "Coke Zero", href: "#" } + { label: "All Products", href: "/shop" }, + { label: "Classic Coke", href: "/shop" }, + { label: "Diet Coke", href: "/shop" }, + { label: "Coke Zero", href: "/shop" } ] }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Our Heritage", href: "#" }, - { label: "Careers", href: "#" }, - { label: "Sustainability", href: "#" } + { label: "About Us", href: "about" }, + { label: "Our Heritage", href: "about" }, + { label: "Careers", href: "about" }, + { label: "Sustainability", href: "about" } ] }, { title: "Support", items: [ - { label: "Contact Us", href: "#contact" }, - { label: "FAQ", href: "#" }, - { label: "Shipping Info", href: "#" }, - { label: "Returns", href: "#" } + { label: "Contact Us", href: "contact" }, + { label: "FAQ", href: "/blog" }, + { label: "Shipping Info", href: "/shop" }, + { label: "Returns", href: "/shop" } ] }, {