From 74b33f7ca5bc411dd0a92f6319a19b83815967b4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:02:26 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 611a3b6..e76b1d7 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -17,7 +17,7 @@ export default function BlogPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -61,7 +61,7 @@ export default function BlogPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#home" }, + { label: "Home", href: "/" }, { label: "Menu", href: "#product" }, { label: "About", href: "#about" }, { label: "Contact", href: "#contact" } @@ -91,4 +91,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From bb1fa6f1a7e3f3263fc136363c820c843c194f74 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:02:28 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 966aba0..b98c78f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1413,4 +1413,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From fe585eefc46886368ed3df76c8f113088e9515b5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:02:29 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a524d64..d9cf852 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import { Coffee, Flame, Heart, Star, Users, ThumbsUp, TrendingUp, Mail, Award } from 'lucide-react'; export default function LandingPage() { @@ -21,7 +22,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -77,6 +78,21 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +} -- 2.49.1 From 6543c5ee5ba8f64aabcb8ae0523676c900b0a4a3 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:02:29 +0000 Subject: [PATCH 4/5] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a4a8484..a7ad368 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -82,7 +82,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -97,8 +97,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -151,7 +150,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -166,8 +165,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -227,7 +225,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -242,8 +240,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -319,4 +316,4 @@ function ProductPageContent({ params }: ProductPageProps) { ); -} \ No newline at end of file +} -- 2.49.1 From b6cd5d1b7520b4d45216e8ed6fb5ff8eac85abab Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:02:30 +0000 Subject: [PATCH 5/5] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 856bde0..c990679 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -25,7 +25,7 @@ function ShopPageContent() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -40,8 +40,7 @@ function ShopPageContent() { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -93,7 +92,7 @@ function ShopPageContent() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -108,8 +107,7 @@ function ShopPageContent() { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -168,4 +166,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1