From 60aabbe6f5e8d136def37b8a4acceb3a14a4efcd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 11:19:42 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 55 +++++++++++++++++++++++++++--------------------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4dcc1ce..ef4eabe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,13 +7,14 @@ import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleC import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; +import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import TeamCardFive from "@/components/sections/team/TeamCardFive"; import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle } from "lucide-react"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; +import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle, Star, Calendar } from "lucide-react"; export default function BuffetPage() { return ( @@ -90,29 +91,35 @@ export default function BuffetPage() { } ]} /> - - Date: Wed, 15 Apr 2026 11:19:42 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..bbc9a51 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: undefined; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: undefined; } -- 2.49.1 From e45988f5779948431151a80dbf722a621740e7fa Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 11:19:43 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 858b8d0..f439db8 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,12 +13,12 @@ --background: #0a0a0a; --card: #161616; --foreground: #f0f0f0; - --primary-cta: #ffffff; + --primary-cta: #d4af37; --primary-cta-text: #0a0a0a; - --secondary-cta: #1e1e1e; + --secondary-cta: #8b0000; --secondary-cta-text: #e0e0e0; - --accent: #d0d0d0; - --background-accent: #9a9a9a; + --accent: #d4af37; + --background-accent: #2e0000; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1