From 5c0d4721aae407132c8f7b40fd25989a17167b32 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 00:24:00 +0000 Subject: [PATCH 1/4] 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 c28294e..f983115 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,6 +32,8 @@ export default function BlogPage() { { name: "About", id: "about" }, { name: "Menu", id: "products" }, { name: "Reviews", id: "testimonials" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, { name: "Contact", id: "contact" } ]} button={{ text: "Order Now", href: "#contact" }} @@ -74,7 +76,7 @@ export default function BlogPage() { { label: "About Us", href: "#about" }, { label: "Our Team", href: "#" }, { label: "Sustainability", href: "#" }, - { label: "Blog", href: "#" } + { label: "Blog", href: "/blog" } ] }, { From f94a409d4b4d7d384f4a861ed65112584dca4340 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 00:24:01 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6390887..f5526c7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -30,10 +30,12 @@ export default function LandingPage() { Date: Wed, 25 Feb 2026 00:24:02 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 42 ++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index c93cf2c..87e73d4 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -93,11 +93,13 @@ function ProductPageContent({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -110,7 +112,7 @@ function ProductPageContent({ params }: ProductPageProps) { logoText="Brew Haven" columns={[ {"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]}, - {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]}, + {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]}, {"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]}, {"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]} ]} @@ -142,11 +144,13 @@ function ProductPageContent({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -167,7 +171,7 @@ function ProductPageContent({ params }: ProductPageProps) { logoText="Brew Haven" columns={[ {"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]}, - {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]}, + {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]}, {"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]}, {"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]} ]} @@ -198,11 +202,13 @@ function ProductPageContent({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -248,7 +254,7 @@ function ProductPageContent({ params }: ProductPageProps) { logoText="Brew Haven" columns={[ {"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]}, - {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]}, + {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]}, {"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]}, {"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]} ]} From 321da70bffbc9037e68f6f45ec68065e22c98a84 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 00:24:02 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 216bb0d..a64472c 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -36,11 +36,13 @@ function ShopPageContent() { console.log("cart") }} /> @@ -53,7 +55,7 @@ function ShopPageContent() { logoText="Brew Haven" columns={[ {"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]}, - {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]}, + {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]}, {"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]}, {"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]} ]} @@ -84,11 +86,13 @@ function ShopPageContent() { console.log("cart") }} /> @@ -109,7 +113,7 @@ function ShopPageContent() { logoText="Brew Haven" columns={[ {"title":"Menu","items":[{"label":"Coffee Drinks","href":"#products"},{"label":"Pastries","href":"#"},{"label":"Seasonal Specials","href":"#"},{"label":"Gift Cards","href":"#"}]}, - {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"#"}]}, + {"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Sustainability","href":"#"},{"label":"Blog","href":"/blog"}]}, {"title":"Connect","items":[{"label":"Contact Us","href":"#contact"},{"label":"Instagram","href":"https://instagram.com"},{"label":"Facebook","href":"https://facebook.com"},{"label":"Twitter","href":"https://twitter.com"}]}, {"title":"Visit","items":[{"label":"Hours","href":"#"},{"label":"Location","href":"#"},{"label":"Parking Info","href":"#"},{"label":"Directions","href":"#"}]} ]}