From 11547090f97392edd5267eaa482f78a6a602c9bf Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:01:39 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 58b1b73..cceaaf2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -14,9 +14,11 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Products", id: "/#products" }, + { name: "Shop", id: "/shop" }, { name: "Testimonials", id: "/#testimonials" }, + { name: "Blog", id: "/blog" }, { name: "FAQ", id: "/#faq" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]; const footerColumns = [ -- 2.49.1 From d4756a85f1a93e9a0b8a7e0708b3c8532252c2ea Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:01:40 +0000 Subject: [PATCH 2/5] Update src/app/page.tsx --- src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c54167e..d7a7a0e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,9 +15,11 @@ export default function LandingPage() { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Products", id: "/#products" }, + { name: "Shop", id: "/shop" }, { name: "Testimonials", id: "/#testimonials" }, + { name: "Blog", id: "/blog" }, { name: "FAQ", id: "/#faq" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]; const footerColumns = [ -- 2.49.1 From 1aee36c28ce5f627da483ca82fc640aa2c887001 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:01:41 +0000 Subject: [PATCH 3/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 9e15f1d..1aa5152 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -75,17 +75,28 @@ function ProductPageContent({ params }: ProductPageProps) { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "Blog", id: "/blog" }], + navItems: [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Products", id: "/#products" }, + { name: "Shop", id: "/shop" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Blog", id: "/blog" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" } + ], brandName: "Balala", className: "py-4 px-6", navItemClassName: "text-foreground hover:text-primary-cta", buttonClassName: "bg-primary-cta text-primary-cta-text", buttonTextClassName: "font-semibold" }; + const footerColumns = [ + { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, + { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, + { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, + ]; + const footerProps = { - columns: [ - { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, - { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, - { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, - { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, - ], + columns: footerColumns, bottomLeftText: "© 2024 Balala Flowers Studio. All rights reserved.", bottomRightText: "Crafted with passion by Balala", columnTitleClassName: "text-foreground", columnItemClassName: "text-foreground hover:text-primary-cta", bottomLeftTextClassName: "text-foreground", bottomRightTextClassName: "text-foreground", dividerClassName: "bg-accent" }; -- 2.49.1 From 2d4d6c23bc6c68022cbe1144a62b56a7c082de7b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:01:41 +0000 Subject: [PATCH 4/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 789b76d..3a31a2d 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,17 +40,28 @@ function ShopPageContent() { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "Blog", id: "/blog" }], + navItems: [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Products", id: "/#products" }, + { name: "Shop", id: "/shop" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Blog", id: "/blog" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" } + ], brandName: "Balala", className: "py-4 px-6", navItemClassName: "text-foreground hover:text-primary-cta", buttonClassName: "bg-primary-cta text-primary-cta-text", buttonTextClassName: "font-semibold" }; + const footerColumns = [ + { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, + { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, + { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, + ]; + const footerProps = { - columns: [ - { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, - { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, - { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, - { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, - ], + columns: footerColumns, bottomLeftText: "© 2024 Balala Flowers Studio. All rights reserved.", bottomRightText: "Crafted with passion by Balala", columnTitleClassName: "text-foreground", columnItemClassName: "text-foreground hover:text-primary-cta", bottomLeftTextClassName: "text-foreground", bottomRightTextClassName: "text-foreground", dividerClassName: "bg-accent" }; -- 2.49.1 From bd52af2c1c011209cad5bc0087ae78cf30a75841 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:01:42 +0000 Subject: [PATCH 5/5] Update src/app/styles/variables.css --- src/app/styles/variables.css | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 14ae6e4..32d1d96 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #25190c;; - --primary-cta: #ff6207;; - --secondary-cta: #ffffff;; - --accent: #ffce93;; - --background-accent: #e8cfa8;; */ + /* --background: #060000;; + --card: #1d0d0d;; + --foreground: #ffe6e6;; + --primary-cta: #ff3d4a;; + --secondary-cta: #1f0a0a;; + --accent: #7b2d2d;; + --background-accent: #b8111f;; */ - --background: #f7f6f7;; - --card: #ffffff;; - --foreground: #25190c;; - --primary-cta: #ff6207;; - --primary-cta-text: #f7f6f7;; - --secondary-cta: #ffffff;; - --secondary-cta-text: #25190c;; - --accent: #ffce93;; - --background-accent: #e8cfa8;; + --background: #060000;; + --card: #1d0d0d;; + --foreground: #ffe6e6;; + --primary-cta: #ff3d4a;; + --primary-cta-text: #060000;; + --secondary-cta: #1f0a0a;; + --secondary-cta-text: #ffe6e6;; + --accent: #7b2d2d;; + --background-accent: #b8111f;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1