From 263d6d0e226c009cdb7f61c2ff4d93fbf31ff4b1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 18:28:23 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 160 ++++++++++++++++------------------------------- 1 file changed, 55 insertions(+), 105 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 33eeede..941bd69 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,27 +5,28 @@ import ReactLenis from "lenis/react"; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; -import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { CheckCircle, Target, Zap } from "lucide-react"; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import { CheckCircle, Target, Zap, Layout, Search, BarChart, Briefcase, Settings } from "lucide-react"; export default function LandingPage() { return (
-
- +
-
-
- -
-
-- 2.49.1 From 473a4c7acab219481c79321eb0400008c137fcf2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 18:28:23 +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 3a5c203..941e7cd 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: #f5f5f5; - --primary-cta: #ffdf7d; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #120006e6; + --primary-cta: #e63946; --primary-cta-text: #0a0a0a; - --secondary-cta: #1a1a1a; + --secondary-cta: #f9f9f9; --secondary-cta-text: #ffffff; - --accent: #b8860b; - --background-accent: #8b6914; + --accent: #e2e2e2; + --background-accent: #c4c4c4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1