From f0d886df70d3956a6ee468b9cda9f1c536ac9019 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 15:05:08 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 355 +++++++++++++++-------------------------------- 1 file changed, 109 insertions(+), 246 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 04a5f13..dbcc7d3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,266 +2,129 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import { Music, Headphones, Zap, ShieldCheck } from "lucide-react"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -} +} \ No newline at end of file -- 2.49.1 From 59da72b2dd81497dc5a3984aec3c1f0ea8be2632 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 15:05:08 +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 c88a206..dffd661 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #060000; - --card: #1d0d0d; - --foreground: #ffe6e6; - --primary-cta: #ff3d4a; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #ffffff; --primary-cta-text: #ffffff; - --secondary-cta: #1f0a0a; + --secondary-cta: #1a1a1a; --secondary-cta-text: #ffe6e6; - --accent: #7b2d2d; - --background-accent: #b8111f; + --accent: #3b82f6; + --background-accent: #1f2937; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1