Update src/app/shop/page.tsx
This commit is contained in:
@@ -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" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user