From 3729a32ad9fdb98cfe3799c6d7ea02a45725b260 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 07:52:57 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d5a4504..c23ca56 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,9 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; @@ -131,38 +131,23 @@ export default function LandingPage() {
-
-- 2.49.1 From 5dfdadfa94f7426122f0d7f4d5a0303e7e4da0fd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 07:52:58 +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 c480bac..34aea07 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-dm-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From ab9d267b13f7a73ea7e1c8cf5fbc79d4d92dc151 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 07:52:58 +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 65ffd3d..1046214 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5faff; - --card: #f1f8ff; - --foreground: #001122; - --primary-cta: #15479c; + --background: #FFFFFF; + --card: #F5F5F5; + --foreground: #1A1A1A; + --primary-cta: #E30613; --primary-cta-text: #f5faff; - --secondary-cta: #ffffff; + --secondary-cta: #1A1A1A; --secondary-cta-text: #001122; - --accent: #a8cce8; - --background-accent: #7ba3cf; + --accent: #E30613; + --background-accent: #FFF0F0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1