From e4ec9fe5cab220f9cd540081a8cf91ba22172400 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:15:47 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 101 ++++++++++++++++++++++------------------------- 1 file changed, 48 insertions(+), 53 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 59c344f..4e52097 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,12 +5,12 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Clock, TrendingUp, DollarSign, Users, CheckCircle, Sparkles, Zap } from "lucide-react"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Clock, TrendingUp, DollarSign, Users, CheckCircle, Sparkles, Zap, Twitter, Linkedin, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -121,49 +121,32 @@ export default function LandingPage() {
-
@@ -196,32 +178,33 @@ export default function LandingPage() {
-
-
-- 2.49.1 From 3c5a47e9c18a127b88a36e578d74ad69c07fac67 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:15:47 +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 ee8d361..b679f84 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #0a0a1a; + --card: #15152e; + --foreground: #e6e6f0; + --primary-cta: #8b5cf6; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #2d2d4a; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #6d28d9; + --background-accent: #4c1d95; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1