From 23c9453a994338aa1dc8ff716ca3fb4d767c75d5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 09:24:30 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 232 +++++++++++++++++++++-------------------------- 1 file changed, 102 insertions(+), 130 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 694d667..85f768f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,152 +2,124 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import { ArrowRight, ChevronRight, CheckCircle } from "lucide-react"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ +
); -} +} \ No newline at end of file -- 2.49.1 From bd89c6c2dee8f7a9c666aff64d1ba64621e73468 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 09:24:31 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 8db27ae..9bd6479 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0b0f14; - --card: #111821; + --background: #121212; + --card: #1e1e1e; --foreground: #ffffff; --primary-cta: #f2c200; --primary-cta-text: #0b0f14; - --secondary-cta: #111821; + --secondary-cta: #333333; --secondary-cta-text: #ffffff; --accent: #f2c200; - --background-accent: #111821; + --background-accent: #252525; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1