From ac9de2be97b7e94096be1ee3d74b90a1b1031595 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 03:10:18 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 226 +++++++++++++++-------------------------------- 1 file changed, 71 insertions(+), 155 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4bc2b81..8982a4c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,174 +2,90 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import { Cpu, Zap, Target } from "lucide-react"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); -} +} \ No newline at end of file -- 2.49.1 From dcf183e77600f600fdbceb58613f59fdad862f3b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 03:10:18 +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 4fd73bf..c757570 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #000612e6; - --primary-cta: #15479c; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #1f7cff; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #1a1a1a; --secondary-cta-text: #000612e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #1f7cff; + --background-accent: #1f7cff; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1