From cf445e60b3af2914b8f1cef1c166dddc83e5ef6f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:45:56 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index bf27cd2..5b91297 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,11 +28,7 @@ export default function BlogPage() { brandName="The Daily Grind" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "menu" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" }, ]} /> @@ -60,9 +56,8 @@ export default function BlogPage() { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, { -- 2.49.1 From cde9ce82f8083805a868af66df064da2140778cb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:45:57 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ae48f90..7dcccf8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { { text: "View Menu", href: "#menu" }, { text: "Visit Us", href: "#contact" }, ]} - background={{ variant: "aurora" }} + background={{ variant: "sparkles-gradient" }} imageSrc="https://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135317.jpg" imageAlt="Cozy coffee shop interior with barista preparing a drink" mediaAnimation="slide-up" -- 2.49.1 From 8e8f827882eb4b15eba9de1e5e243facd1c0a73c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:45:58 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a056668..e0edf64 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -4,7 +4,7 @@ import { use, useCallback } from "react"; import { useRouter } from "next/navigation"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard"; import ProductCart from "@/components/ecommerce/cart/ProductCart"; @@ -197,9 +197,8 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, { -- 2.49.1 From 1c5d766d0f1c862c4233eec0b139c4f77657891a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:45:59 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 57c123d..a9e969a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -124,9 +124,8 @@ export default function ShopPage() { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, { -- 2.49.1