From dba7265c6022c4af2056e8a913a4ffc35f441960 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:34:43 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 266 ++++++++++++++++++++--------------------------- 1 file changed, 113 insertions(+), 153 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 32ed3da..8b5fe22 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ButtonIconArrow from '@/components/button/ButtonIconArrow'; export default function LandingPage() { return ( @@ -26,162 +27,121 @@ export default function LandingPage() { headingFontWeight="bold" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ + + +
+ + +
); -- 2.49.1 From 6c0e252309d17f314aef89c1e55b7144ac656587 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:34:43 +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 0f9f89d..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-poppins), 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-poppins), sans-serif; + font-family: var(--font-playfair), sans-serif; } -- 2.49.1 From 63e789d5b2dc992e0514b8e2a25cd5633f0060ca Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 22:34:44 +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 018e8e2..d2ed481 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000000; - --card: #0c0c0c; - --foreground: #ffffff; - --primary-cta: #106EFB; + --background: #010912; + --card: #152840; + --foreground: #e6f0ff; + --primary-cta: #d4af37; --primary-cta-text: #ffffff; - --secondary-cta: #000000; + --secondary-cta: #0e1a29; --secondary-cta-text: #ffffff; - --accent: #535353; - --background-accent: #106EFB; + --accent: #b8860b; + --background-accent: #004a93; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1