From a08143fedd5fc3b10f908a124f4ad5f932166070 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 23 Dec 2025 10:40:15 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 2186f15..e7240b6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #f5faff;; - --card: #f1f8ff;; - --foreground: #001122;; - --primary-cta: #15479c;; - --secondary-cta: #ffffff;; - --accent: #0059b3;; - --background-accent: #15479c;; + --background: #ffff00; + --card: #fffaf0; + --foreground: #000000; + --primary-cta: #000000; + --secondary-cta: #ffff00; + --accent: #cccc00; + --background-accent: #ffff99; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-noto-sans), sans-serif; + font-family: var(--font-inter-tight), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-noto-sans), sans-serif; + font-family: var(--font-inter-tight), sans-serif; } \ No newline at end of file From 7add1f29207b54d0a5c531b019cbc26ac142ded0 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 23 Dec 2025 10:40:16 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e3c9847..54c30a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1273,4 +1273,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From a06637e181f0465ec094af3abb767136c4093394 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 23 Dec 2025 10:40:17 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6ba42f8..a046aea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,9 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroShowcaseSplitOverlay from '@/components/sections/hero/HeroShowcaseSplitOverlay'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import SplitAbout from '@/components/sections/about/SplitAbout'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import MetricCardSix from '@/components/sections/metrics/MetricCardSix'; @@ -62,16 +62,33 @@ export default function LandingPage() {
-
@@ -383,4 +400,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}