From 140b357bcfb249866e52cf4a5b5e0b15b33c4e14 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 09:14:10 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 273 +++++++++++++++++------------------------------ 1 file changed, 96 insertions(+), 177 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 40b0546..1556935 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,197 +4,116 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import SplitAbout from '@/components/sections/about/SplitAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { BarChart2, Shield, Zap } from "lucide-react"; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { Shield, Sparkles, Smile, Star } from "lucide-react"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- -
- -
- - +
); -} +} \ No newline at end of file -- 2.49.1 From 9b515879d044d48b92ea72789d6a94c49e31d20b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 09:14:11 +0000 Subject: [PATCH 2/2] 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 19f4137..43ebdfe 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #ffffffe6; - --primary-cta: #e6e6e6; + --background: #ffffff; + --card: #fbfbfb; + --foreground: #1f2937; + --primary-cta: #1f3a5f; --primary-cta-text: #0a0a0a; - --secondary-cta: #1a1a1a; + --secondary-cta: #d4af37; --secondary-cta-text: #ffffffe6; - --accent: #737373; - --background-accent: #737373; + --accent: #d4af37; + --background-accent: #f3f4f6; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1