From 4c4d41f0688b347ef92d33642920e3f55da8f508 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:01:26 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 7b8bff1..281d5ee 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -35,10 +35,10 @@ export default function BlogPage() { brandName="PandaCoffee" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "menu" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Menu", id: "/#menu" }, + { name: "About", id: "/#about" }, + { name: "Reviews", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, ]} /> -- 2.49.1 From bc2e17fec79f3fd76430dee2628a0b13d617495f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:01:28 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c99224a..8011aa9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -87,7 +87,7 @@ export default function LandingPage() { { id: "2", name: "Espresso Shot", price: "$3.00", variant: "Rich, bold, and aromatic.", imageSrc: "https://img.b2bpic.net/free-photo/coffee-preparation-concept-still-life_23-2150354586.jpg", imageAlt: "Espresso Shot" }, { id: "3", name: "Cold Brew", price: "$5.00", variant: "Smooth, low-acid, and refreshing.", imageSrc: "https://img.b2bpic.net/free-photo/cold-summer-coffee-drink-with-ice-orange-juice_169016-21399.jpg", imageAlt: "Cold Brew" }, { id: "4", name: "Matcha Latte", price: "$5.50", variant: "Earthy, vibrant, and energizing.", imageSrc: "https://img.b2bpic.net/free-photo/top-view-woman-holding-hands-trendy-green-matcha-drink-with-latte-art_169016-34119.jpg", imageAlt: "Matcha Latte" }, - { id: "5", name: "Freshly Baked Pastries", price: "$3.75", variant: "A delightful selection daily.", imageSrc: "https://img.b2bpic.net/free-photo/variety-sweet-biscuits-wooden-piece-with-dried-fruits-high-quality-photo_114579-68830.jpg?_wi=1", imageAlt: "Freshly Baked Pastries" } + { id: "5", name: "Freshly Baked Pastries", price: "$3.75", variant: "A delightful selection daily.", imageSrc: "https://img.b2bpic.net/free-photo/variety-sweet-biscuits-wooden-piece-with-dried-fruits-high-quality-photo_114579-68830.jpg", imageAlt: "Freshly Baked Pastries" } ]} /> @@ -102,7 +102,7 @@ export default function LandingPage() { { title: "Ethically Sourced Beans", description: "We partner with farms dedicated to sustainable practices and exceptional quality.", imageSrc: "https://img.b2bpic.net/free-photo/tattooed-barista-hand-holds-raw-green-coffee-beans-from-white-plastic-basket-cotton-bags-europalet-warehouse_346278-886.jpg", imageAlt: "Ethically sourced coffee beans", buttonIcon: Leaf, buttonHref: "#beans" }, { title: "Expert Baristas", description: "Our team crafts every drink with passion and precision.", imageSrc: "https://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", imageAlt: "Barista making coffee", buttonIcon: Coffee, buttonHref: "#team" }, { title: "Cozy Atmosphere", description: "Relax and unwind in our welcoming space, perfect for work or leisure.", imageSrc: "https://img.b2bpic.net/free-photo/woman-works-cafe-evening_1153-3549.jpg", imageAlt: "Cozy cafe interior", buttonIcon: Home, buttonHref: "#ambiance" }, - { title: "Delicious Pairings", description: "Enjoy our selection of freshly baked goods and snacks.", imageSrc: "https://img.b2bpic.net/free-photo/variety-sweet-biscuits-wooden-piece-with-dried-fruits-high-quality-photo_114579-68830.jpg?_wi=2", imageAlt: "Pastries and coffee", buttonIcon: Croissant, buttonHref: "#pastries" } + { title: "Delicious Pairings", description: "Enjoy our selection of freshly baked goods and snacks.", imageSrc: "https://img.b2bpic.net/free-photo/variety-sweet-biscuits-wooden-piece-with-dried-fruits-high-quality-photo_114579-68830.jpg", imageAlt: "Pastries and coffee", buttonIcon: Croissant, buttonHref: "#pastries" } ]} /> -- 2.49.1 From acd60103d5ffa05c60052f384991abcba15d7973 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:01:28 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index b62e096..4c02a5c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -1,4 +1,4 @@ -use client"; +"use client"; import { use, useCallback } from "react"; import { useRouter } from "next/navigation"; @@ -84,7 +84,6 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} />
@@ -116,7 +115,6 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} />
@@ -155,7 +153,6 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} />
-- 2.49.1 From e1523e72bac5a50507571d9ac0cb3ec5168ff721 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 13:01:29 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index a583fd7..236f425 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,4 +1,4 @@ -use client"; +"use client"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; @@ -59,7 +59,6 @@ export default function ShopPage() { setCartOpen(true) }} />
@@ -90,7 +89,6 @@ export default function ShopPage() { setCartOpen(true) }} />
-- 2.49.1