From cf0cc326d82d5dcd7584155c401057e233b69c25 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:59:15 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 74 +++++++++++++++++++++++-------------------- 1 file changed, 40 insertions(+), 34 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 77ec080..5adf7ae 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -26,42 +26,48 @@ export default function BlogPage() { headingFontWeight="bold" > - + -
- {isLoading ? ( -
-

Loading posts...

-
- ) : ( - - )} -
+
+
+ {isLoading ? ( +
+

Loading posts...

+
+ ) : ( + + )} +
+
- +
); -- 2.49.1 From bd32e45f4ca18e6beaf9821ba164f0838a792553 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:59:15 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8774653..a4df01c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,8 +43,8 @@ export default function LandingPage() { imageSrc="https://img.b2bpic.net/free-photo/close-up-image-man-holds-coffee-with-heart-foam-top-view_613910-8884.jpg" imageAlt="Close-up of a coffee cup with latte art on a wooden table in a cozy coffee shop." tag="Welcome to Bean Haven" - tagAnimation="background-highlight" - buttonAnimation="background-highlight" + tagAnimation="slide-up" + buttonAnimation="slide-up" textBoxClassName="max-w-3xl" titleClassName="text-balance" descriptionClassName="max-w-2xl text-balance" @@ -64,7 +64,7 @@ export default function LandingPage() { imageSrc="https://img.b2bpic.net/free-photo/smiling-asian-girl-barista-cafe-staff-pouring-steamed-milk-coffee-prepare-cappuccino-with-latte_1258-134426.jpg" imageAlt="A friendly barista preparing a latte behind a coffee machine." useInvertedBackground={false} - tagAnimation="background-highlight" + tagAnimation="slide-up" mediaAnimation="opacity" className="bg-card" /> @@ -106,7 +106,7 @@ export default function LandingPage() {
-- 2.49.1 From 22589508d6a979377efa85b70b4304b57dcb9c80 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:59:16 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 43 +++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 8baccc5..5b03abd 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -74,6 +74,19 @@ function ProductPageContent({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Menu", id: "/#product" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, + ]; + + const footerColumns = [ + { items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/#product" }, { label: "About Us", href: "/#about" }] }, + { items: [{ label: "Contact", href: "/#contact" }, { label: "Blog", href: "/blog" }, { label: "Privacy Policy", href: "/privacy" }] }, + ]; + if (isLoading) { return (