Update src/app/shop/page.tsx

This commit is contained in:
2026-02-18 07:50:45 +00:00
parent 59e0f8e0e5
commit d5ab28d147

View File

@@ -42,8 +42,8 @@ export default function ShopPage() {
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Process", id: "process" },
{ name: "About", id: "about" },
{ name: "Shop", id: "/shop" }
{ name: "Gallery", id: "gallery" },
{ name: "About", id: "about" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -70,6 +70,7 @@ export default function ShopPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Process", href: "#process" },
{ label: "Gallery", href: "#gallery" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" }
]
@@ -111,8 +112,8 @@ export default function ShopPage() {
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Process", id: "process" },
{ name: "About", id: "about" },
{ name: "Shop", id: "/shop" }
{ name: "Gallery", id: "gallery" },
{ name: "About", id: "about" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -147,6 +148,7 @@ export default function ShopPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Process", href: "#process" },
{ label: "Gallery", href: "#gallery" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" }
]
@@ -164,4 +166,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}