Update src/app/page.tsx

This commit is contained in:
2026-02-06 16:40:39 +00:00
parent f2de1327d6
commit 58d64198a4

View File

@@ -29,14 +29,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Products", id: "products" },
{ name: "Products", id: "/shop" },
{ name: "About", id: "about" },
{ name: "Collections", id: "collections" },
{ name: "Collections", id: "/shop" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Shop Now", href: "products"
text: "Shop Now", href: "/shop"
}}
brandName="Bee Cups"
/>
@@ -53,7 +53,7 @@ export default function LandingPage() {
imageAlt="Colorful artisan bee cups collection"
imagePosition="right"
buttons={[
{ text: "Shop Collection", href: "products" },
{ text: "Shop Collection", href: "/shop" },
{ text: "Learn More", href: "about" }
]}
/>
@@ -211,10 +211,10 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
{ label: "All Products", href: "products" },
{ label: "Collections", href: "collections" },
{ label: "All Products", href: "/shop" },
{ label: "Collections", href: "/shop" },
{ label: "Custom Orders", href: "contact" },
{ label: "Sale Items", href: "products" }
{ label: "Sale Items", href: "/shop" }
]
},
{