Update src/app/shop/page.tsx

This commit is contained in:
2026-02-06 12:47:53 +00:00
parent 7e88caea9b
commit 977d604070

View File

@@ -36,12 +36,12 @@ export default function ShopPage() {
brandName="Alisa" brandName="Alisa"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "products" }, { name: "Shop", id: "/shop" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Order Now", href: "products" }} button={{ text: "Order Now", href: "/shop" }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -52,7 +52,7 @@ export default function ShopPage() {
columns={[ columns={[
{ {
items: [ items: [
{ label: "Shop Flowers", href: "products" }, { label: "Shop Flowers", href: "/shop" },
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Testimonials", href: "testimonials" } { label: "Testimonials", href: "testimonials" }
] ]
@@ -97,12 +97,12 @@ export default function ShopPage() {
brandName="Alisa" brandName="Alisa"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Shop", id: "products" }, { name: "Shop", id: "/shop" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Order Now", href: "products" }} button={{ text: "Order Now", href: "/shop" }}
/> />
</div> </div>
<div id="productCatalog" data-section="productCatalog"> <div id="productCatalog" data-section="productCatalog">
@@ -121,7 +121,7 @@ export default function ShopPage() {
columns={[ columns={[
{ {
items: [ items: [
{ label: "Shop Flowers", href: "products" }, { label: "Shop Flowers", href: "/shop" },
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Testimonials", href: "testimonials" } { label: "Testimonials", href: "testimonials" }
] ]