From 7429bf71d26f2147b33b3d88800c514db7ae7f31 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 07:08:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 310 ++++++++++++++++------------------------------- 1 file changed, 107 insertions(+), 203 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index aed2e30..8c9aa37 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,9 +10,9 @@ import HeroCentered from '@/components/sections/hero/HeroCentered'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { Instagram, Leaf, Moon, Star, Waves } from "lucide-react"; +import { Instagram, Leaf, Moon, Star, Waves, Gift, Users, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -29,214 +29,118 @@ export default function LandingPage() { headingFontWeight="light" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); -- 2.49.1 From 700e38d0fb6f2079806423704df329df87d923af Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 07:08:29 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 0fdb09b..092e356 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fffefe; - --card: #f6f7f4; - --foreground: #080908; - --primary-cta: #0e3a29; + --background: #ffffff; + --card: #f9f6f2; + --foreground: #1a1a1a; + --primary-cta: #8b0000; --primary-cta-text: #fffefe; - --secondary-cta: #e7eecd; + --secondary-cta: #e6e2da; --secondary-cta-text: #080908; - --accent: #35c18b; - --background-accent: #ecebe4; + --accent: #8b0000; + --background-accent: #f9f6f2; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1