Update src/app/page.tsx

This commit is contained in:
2026-02-06 11:36:58 +00:00
parent bebf31b3ca
commit 47ee5ce49b

View File

@@ -30,12 +30,12 @@ export default function LandingPage() {
brandName="Honey Bee"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "Products", id: "/shop" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Shop Now", href: "products"
text: "Shop Now", href: "/shop"
}}
/>
</div>
@@ -50,7 +50,7 @@ export default function LandingPage() {
imageSrc="https://img.b2bpic.net/free-photo/high-view-bowls-mugs-pottery-concept_23-2148679111.jpg"
imageAlt="Beautiful collection of artisanal ceramic cups"
buttons={[
{ text: "Shop Our Collection", href: "products" },
{ text: "Shop Our Collection", href: "/shop" },
{ text: "Learn More", href: "about" }
]}
/>
@@ -194,9 +194,9 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
{ label: "All Products", href: "products" },
{ label: "Featured Items", href: "products" },
{ label: "Gift Sets", href: "products" }
{ label: "All Products", href: "/shop" },
{ label: "Featured Items", href: "/shop" },
{ label: "Gift Sets", href: "/shop" }
]
},
{