From e491f5189557033814cb73e32d13d1e70057b7ce Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 21:19:13 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 427 ++++++++++++----------------------------------- 1 file changed, 103 insertions(+), 324 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ab9ff2..4c55af4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,350 +2,129 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import MediaAbout from '@/components/sections/about/MediaAbout'; +import { ShieldCheck } from "lucide-react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import MediaAbout from '@/components/sections/about/MediaAbout'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 311877394765305477a443401a954088a879584e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 21:19:13 +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 d9137ab..dd76232 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: #2c1a0e; + --background: #1C1C1C; + --card: #262626; + --foreground: #FFFFFF; + --primary-cta: #8B2A2A; --primary-cta-text: #f5ecd7; - --secondary-cta: #f5ecd7; + --secondary-cta: #404040; --secondary-cta-text: #2c1a0e; - --accent: #c9a84c; - --background-accent: #efe7dd; + --accent: #8B2A2A; + --background-accent: #262626; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1