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