Update src/app/shop/page.tsx

This commit is contained in:
2026-01-29 15:14:37 +00:00
parent 75d4097f46
commit 9168392c53

View File

@@ -24,11 +24,11 @@ export default function ShopPage() {
<NavbarStyleFullscreen
navItems={[
{name: "Home", id: "/"},
{name: "Products", id: "products"},
{name: "Products", id: "#products"},
{name: "Shop", id: "/shop"},
{name: "About", id: "about"},
{name: "Testimonials", id: "testimonials"},
{name: "Contact", id: "contact"}
{name: "About", id: "#about"},
{name: "Testimonials", id: "#testimonials"},
{name: "Contact", id: "/contact"}
]}
brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily"
@@ -85,13 +85,13 @@ export default function ShopPage() {
title: "Shop", items: [
{ label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "/#feature" },
{ label: "Custom Orders", href: "/#contact" }
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Contact Us", href: "/#contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Testimonials", href: "/#testimonials" }
]
},