From 621c7d7c33bbc3b32e52c4b1c0adc502e3206800 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:31:52 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 223 +++++++++-------------------------------------- 1 file changed, 43 insertions(+), 180 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d11f9bc..4020c91 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,14 +3,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import { Award, Coffee, Facebook, Instagram, Users } from "lucide-react"; export default function LandingPage() { @@ -31,22 +31,10 @@ export default function LandingPage() {
-
-
-
-- 2.49.1 From fa7a210fd1219f87203be77dfbde20ca686cf3a4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:31:53 +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 ce3eac0..815a17c 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-public-sans), sans-serif; + font-family: var(--font-open-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1 From 6e859524cfd517d1167fc1cfc27adb698d95f1f9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:31:53 +0000 Subject: [PATCH 3/3] 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 b7afc67..b168257 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #2b180a; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #efe7dd; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1