From 4d1d18c57226d35e81f549301e05ad95a56d9789 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 05:57:55 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 51 ++++++++++++++++++++++-------------------------- 1 file changed, 23 insertions(+), 28 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 31bf92c..b7689f2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,15 +3,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import { Github, Globe, Linkedin, Rocket, Sparkles, Twitter, Users } from "lucide-react"; export default function LandingPage() { @@ -93,19 +93,22 @@ export default function LandingPage() {
-
-
-
-- 2.49.1 From 16b84ca02ba33d52aeea84a9cca94f2b388d1c5a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 05:57:56 +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 71cd5ac..cf655b0 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,12 +12,12 @@ --background: #0a0a0a; --card: #121212; - --foreground: #ffffff; - --primary-cta: #00f2ff; + --foreground: #f5f5f5; + --primary-cta: #ffffff; --primary-cta-text: #000000; - --secondary-cta: #7000ff; + --secondary-cta: #333333; --secondary-cta-text: #ffffff; - --accent: #00f2ff; + --accent: #00ff9d; --background-accent: #1a1a1a; /* text sizing - set by ThemeProvider */ -- 2.49.1