From cdd4d8e9e5443ca3fe138670f5ddef0afeae2bbb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 11:36:07 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 9b93317..6b4a844 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -42,7 +42,7 @@ export default function BlogPage() { ) : (
Date: Wed, 25 Feb 2026 11:36:08 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b38de5a..bd06622 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,6 +17,7 @@ import { Facebook, Heart, Instagram, + Package, Shield, ShoppingCart, Sparkles, @@ -71,26 +72,26 @@ export default function SitePage() { buttonAnimation="slide-up" dashboard={{ title: "Featured Collection", stats: [ - { title: "Sustainable Materials", values: [100], valueSuffix: "%", description: "Sustainably sourced materials." }, - { title: "Customer Satisfaction", values: [98], valueSuffix: "%", description: "Based on 500+ reviews." }, - { title: "Global Shipping", values: [200], valueSuffix: "+ Countries", description: "Available worldwide." }, + { title: "Sustainable Materials", values: [95, 98, 100], valueSuffix: "%", description: "Sustainably sourced materials." }, + { title: "Customer Satisfaction", values: [94, 96, 98], valueSuffix: "%", description: "Based on 500+ reviews." }, + { title: "Global Shipping", values: [180, 190, 200], valueSuffix: "+ Countries", description: "Available worldwide." }, ], logoIcon: Coffee, sidebarItems: [ - { icon: Heart, label: "Favorites" }, - { icon: ShoppingCart, label: "Cart" }, - { icon: User, label: "Account" }, + { icon: Heart }, + { icon: ShoppingCart }, + { icon: User }, ], buttons: [{ text: "View Details", href: "#products-section" }], listItems: [ - { title: "Ceramic Collection", description: "Handcrafted ceramic cups with unique glazes." }, - { title: "Glass Series", description: "Clear, durable glass designs for everyday use." }, - { title: "Travel Mugs", description: "Insulated mugs perfect for on-the-go." }, + { icon: Package, title: "Ceramic Collection", status: "Handcrafted ceramic cups with unique glazes." }, + { icon: Package, title: "Glass Series", status: "Clear, durable glass designs for everyday use." }, + { icon: Package, title: "Travel Mugs", status: "Insulated mugs perfect for on-the-go." }, ], imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-cup-tea-with-flowers-white-surface_141793-13652.jpg", searchPlaceholder: "Search products...", chartTitle: "Customer Ratings", chartData: [ - { name: "5 Stars", value: 85 }, - { name: "4 Stars", value: 10 }, - { name: "3 Stars", value: 5 }, + { value: 85 }, + { value: 10 }, + { value: 5 }, ], listTitle: "Popular Categories", imageAlt: "Featured Dring Together cups collection" }} -- 2.49.1 From 23687d1ce0773afd010b634e01f20150f49c5afb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 11:36:08 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 3b75249..d80e20c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -83,10 +83,6 @@ function ProductPageContent({ params }: ProductPageProps) { brandName="Dring Together" navItems={navItems} button={{ text: "Cart", onClick: () => setCartOpen(true) }} - mobileMenuItems={[ - ...navItems, - { type: 'button', text: "Cart", onClick: () => setCartOpen(true) } - ]} /> ); -- 2.49.1 From 94fbebdc8fcc27e335176aa7f50f5ad4c9b937ec Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 11:36:09 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5e0d3b2..53ef864 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -50,10 +50,6 @@ function ShopPageContent() { brandName="Dring Together" navItems={navItems} button={{ text: "Cart", onClick: () => setCartOpen(true) }} - mobileMenuItems={[ - ...navItems, - { type: 'button', text: "Cart", onClick: () => setCartOpen(true) } - ]} /> ); -- 2.49.1