Merge version_1 into main #1

Merged
development merged 2 commits from version_1 into main 2026-02-06 16:40:44 +00:00
2 changed files with 13 additions and 13 deletions

View File

@@ -28,13 +28,13 @@ export default function BlogPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ 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={{ text: "Shop Now", href: "products" }} button={{ text: "Shop Now", href: "/shop" }}
brandName="Bee Cups" brandName="Bee Cups"
/> />
</div> </div>
@@ -64,10 +64,10 @@ export default function BlogPage() {
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" }
] ]
}, },
{ {

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" }
] ]
}, },
{ {