From 998504d5962fd03c7ddf8a956adfbba7c6927688 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:12:25 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 58 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 512c358..21c224e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,10 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { BookOpen, CheckCircle, Clock, Flame, Heart, UtensilsCrossed, Users, Wine, Sparkles, ArrowRight } from 'lucide-react'; +import { BookOpen, CheckCircle, Clock, Flame, Heart, UtensilsCrossed, Users, Wine, Sparkles, ArrowRight, Star, Quote } from 'lucide-react'; export default function LandingPage() { return ( @@ -129,6 +130,44 @@ export default function LandingPage() { /> +
+ +
+
+
+ +
+
Date: Tue, 10 Mar 2026 22:12:25 +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 fbd84bc..5c01d70 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f5f5; - --card: #ffffff; - --foreground: #1c1c1c; - --primary-cta: #1c1c1c; + --background: #1a1a1a; + --card: #2a2a2a; + --foreground: #f5f5f5; + --primary-cta: #d4af37; --primary-cta-text: #f5f5f5; - --secondary-cta: #ffffff; + --secondary-cta: #3a3a3a; --secondary-cta-text: #1c1c1c; - --accent: #e63946; - --background-accent: #e8bea8; + --accent: #c9a961; + --background-accent: #4a4a4a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1