Merge version_2 into main #3

Merged
bender merged 5 commits from version_2 into main 2026-02-21 14:10:51 +00:00
5 changed files with 70 additions and 1427 deletions

View File

@@ -30,12 +30,14 @@ export default function BlogPage() {
brandName="Bakteria"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Brew Process", id: "process" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Order Now", href: "contact" }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>

File diff suppressed because it is too large Load Diff

View File

@@ -29,14 +29,16 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Brew Process", id: "process" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{
text: "Order Now", href: "contact"
text: "Order Now", href: "/#contact"
}}
/>
</div>
@@ -191,4 +193,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -86,14 +86,15 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Brew Process","id":"process"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -134,14 +135,15 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Brew Process","id":"process"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -189,14 +191,15 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Brew Process","id":"process"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>
<div id="productDetailCard" data-section="productDetailCard">
@@ -249,4 +252,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -36,14 +36,15 @@ export default function ShopPage() {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Brew Process","id":"process"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -83,14 +84,15 @@ export default function ShopPage() {
<NavbarStyleCentered
brandName="Bakteria"
navItems={[
{"name":"Home","id":"/"},
{"name":"About","id":"about"},
{"name":"Menu","id":"menu"},
{"name":"Brew Process","id":"process"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Brew Process", id: "/#process" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
button={{ text: "Order Now", href: "/#contact" }}
/>
</div>
<div id="productCatalog" data-section="productCatalog">
@@ -118,4 +120,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}