35 Commits

Author SHA1 Message Date
0443aa41c6 Update src/app/shop/page.tsx 2026-02-24 11:57:03 +00:00
3768276359 Update src/app/shop/[id]/page.tsx 2026-02-24 11:57:02 +00:00
52f8ae3813 Update src/app/page.tsx 2026-02-24 11:57:01 +00:00
3d6785f573 Update src/app/blog/page.tsx 2026-02-24 11:56:59 +00:00
51aebaa699 Merge version_6 into main
Merge version_6 into main
2026-02-24 11:53:14 +00:00
b25680bbf8 Update src/app/styles/variables.css 2026-02-24 11:53:10 +00:00
443f5828bf Update src/app/shop/page.tsx 2026-02-24 11:53:09 +00:00
bfda844f35 Update src/app/shop/[id]/page.tsx 2026-02-24 11:53:08 +00:00
bdbc6203ac Update src/app/page.tsx 2026-02-24 11:53:08 +00:00
0a1a9f700e Update src/app/layout.tsx 2026-02-24 11:53:07 +00:00
9433e9f20e Update src/app/blog/page.tsx 2026-02-24 11:53:05 +00:00
bb42a8abda Merge version_5 into main
Merge version_5 into main
2026-02-24 11:50:39 +00:00
0683f11482 Update src/app/styles/variables.css 2026-02-24 11:50:34 +00:00
7876cdadac Update src/app/shop/page.tsx 2026-02-24 11:50:34 +00:00
389c4060f6 Update src/app/shop/[id]/page.tsx 2026-02-24 11:50:33 +00:00
a2efa131ef Update src/app/page.tsx 2026-02-24 11:50:32 +00:00
fc0c22fed5 Update src/app/layout.tsx 2026-02-24 11:50:31 +00:00
ef34e041e7 Update src/app/blog/page.tsx 2026-02-24 11:50:30 +00:00
d0b389a608 Merge version_4 into main
Merge version_4 into main
2026-02-24 11:47:19 +00:00
39fae5c28d Update src/app/styles/variables.css 2026-02-24 11:47:15 +00:00
7f6b4e2295 Update src/app/shop/page.tsx 2026-02-24 11:47:14 +00:00
47f260b4c2 Update src/app/shop/[id]/page.tsx 2026-02-24 11:47:13 +00:00
e7de8f5228 Update src/app/page.tsx 2026-02-24 11:47:12 +00:00
f1f467346d Update src/app/layout.tsx 2026-02-24 11:47:12 +00:00
d85d2e39d5 Update src/app/blog/page.tsx 2026-02-24 11:47:11 +00:00
56000785d9 Merge version_3 into main
Merge version_3 into main
2026-02-24 11:30:59 +00:00
d87ca2b631 Update src/app/page.tsx 2026-02-24 11:30:54 +00:00
f88a5bf093 Merge version_2 into main
Merge version_2 into main
2026-02-24 11:18:12 +00:00
ed3afe1574 Update src/app/styles/variables.css 2026-02-24 11:18:07 +00:00
224df80da8 Update src/app/shop/page.tsx 2026-02-24 11:18:06 +00:00
f44edb1452 Update src/app/shop/[id]/page.tsx 2026-02-24 11:18:06 +00:00
7cdb3f0e8b Update src/app/blog/page.tsx 2026-02-24 11:18:04 +00:00
6489e898a9 Merge version_1 into main
Merge version_1 into main
2026-02-24 11:15:17 +00:00
e4bfa1957e Merge version_1 into main
Merge version_1 into main
2026-02-24 11:14:32 +00:00
5221899590 Merge version_1 into main
Merge version_1 into main
2026-02-24 11:10:27 +00:00
6 changed files with 40 additions and 45 deletions

View File

@@ -28,7 +28,7 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "hero" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Menu", id: "products" }, { name: "Menu", id: "products" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },

View File

@@ -45,7 +45,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardGallery <HeroBillboardGallery
title="Crafted Coffee, Community Connection" title="dskfjsdlkjf"
description="Experience premium specialty coffee in an inviting space designed for authentic connections and exceptional taste." description="Experience premium specialty coffee in an inviting space designed for authentic connections and exceptional taste."
tag="Welcome to Brew & Co" tag="Welcome to Brew & Co"
tagIcon={Coffee} tagIcon={Coffee}

View File

@@ -88,18 +88,17 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"hero"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Menu","id":"products"}, {"name":"Menu","id":"products"},
{"name":"Testimonials","id":"testimonials"}, {"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}, {"name":"Contact","id":"contact"}
{"name":"Shop","id":"/shop"}
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Reserve Now", href: "#contact" }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -136,18 +135,17 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"hero"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Menu","id":"products"}, {"name":"Menu","id":"products"},
{"name":"Testimonials","id":"testimonials"}, {"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}, {"name":"Contact","id":"contact"}
{"name":"Shop","id":"/shop"}
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Reserve Now", href: "#contact" }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -191,18 +189,17 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"hero"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Menu","id":"products"}, {"name":"Menu","id":"products"},
{"name":"Testimonials","id":"testimonials"}, {"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}, {"name":"Contact","id":"contact"}
{"name":"Shop","id":"/shop"}
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Reserve Now", href: "#contact" }}
/> />
</div> </div>
<div id="productDetailCard" data-section="productDetailCard"> <div id="productDetailCard" data-section="productDetailCard">

View File

@@ -33,18 +33,17 @@ function ShopPageContent() {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"hero"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Menu","id":"products"}, {"name":"Menu","id":"products"},
{"name":"Testimonials","id":"testimonials"}, {"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}, {"name":"Contact","id":"contact"}
{"name":"Shop","id":"/shop"}
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Reserve Now", href: "#contact" }}
/> />
</div> </div>
<main className="min-h-screen flex items-center justify-center pt-20"> <main className="min-h-screen flex items-center justify-center pt-20">
@@ -80,18 +79,17 @@ function ShopPageContent() {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Brew & Co" brandName="Brew & Co"
navItems={[ navItems={[
{"name":"Home","id":"/"}, {"name":"Home","id":"hero"},
{"name":"About","id":"about"}, {"name":"About","id":"about"},
{"name":"Menu","id":"products"}, {"name":"Menu","id":"products"},
{"name":"Testimonials","id":"testimonials"}, {"name":"Testimonials","id":"testimonials"},
{"name":"Contact","id":"contact"}, {"name":"Contact","id":"contact"}
{"name":"Shop","id":"/shop"}
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Reserve Now", href: "#contact" }}
/> />
</div> </div>
<div id="productCatalog" data-section="productCatalog"> <div id="productCatalog" data-section="productCatalog">

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f7f6f7;; /* --background: #e8d4c4;;
--card: #ffffff;; --card: #f5e6d9;;
--foreground: #0c1325;; --foreground: #3d2817;;
--primary-cta: #0798ff;; --primary-cta: #8b4513;;
--secondary-cta: #ffffff;; --secondary-cta: #f5e6d9;;
--accent: #93c7ff;; --accent: #d4a373;;
--background-accent: #a8cde8;; */ --background-accent: #b8925f;; */
--background: #f7f6f7;; --background: #e8d4c4;;
--card: #ffffff;; --card: #f5e6d9;;
--foreground: #0c1325;; --foreground: #3d2817;;
--primary-cta: #0798ff;; --primary-cta: #8b4513;;
--primary-cta-text: #f7f6f7;; --primary-cta-text: #ffffff;;
--secondary-cta: #ffffff;; --secondary-cta: #f5e6d9;;
--secondary-cta-text: #0c1325;; --secondary-cta-text: #3d2817;;
--accent: #93c7ff;; --accent: #d4a373;;
--background-accent: #a8cde8;; --background-accent: #b8925f;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);