From d4824e8ab44d6d475c5149cd8dccc6cbb9269cb3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 18:33:14 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 370 +++++++++++++++-------------------------------- 1 file changed, 117 insertions(+), 253 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 45bc818..5f235be 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,11 +5,12 @@ import ReactLenis from "lenis/react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import ButtonDirectionalHover from '@/components/button/ButtonDirectionalHover/ButtonDirectionalHover'; export default function LandingPage() { return ( @@ -26,265 +27,128 @@ export default function LandingPage() { headingFontWeight="medium" > - +
+ +
-
- -
+ -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ +
); -} +} \ No newline at end of file -- 2.49.1 From e68fb71bda4d64e0773eadc6a055d800f2640d5d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 18:33:14 +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 bbb522f..f3435b3 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-source-sans-3), sans-serif; + font-family: var(--font-playfair), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(--font-playfair), sans-serif; } -- 2.49.1 From ed84d7999dd4ac2014d2c27cd0220a181c8e850b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 18:33:15 +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 647b20e..8945fba 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #c6b180; + --background: #F5F1ED; + --card: #FEFDFB; + --foreground: #2C2C2C; + --primary-cta: #D4AF8F; --primary-cta-text: #2b180a; - --secondary-cta: #efe7dd; + --secondary-cta: #2C2C2C; --secondary-cta-text: #2b180a; - --accent: #2b180a; - --background-accent: #afa094; + --accent: #D4AF8F; + --background-accent: #D4AF8F; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1