From bae4a60aa3225740fc11476029ec8a0c18f15635 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 21:28:51 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 264 ++++++++++++----------------------------------- 1 file changed, 66 insertions(+), 198 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6702b69..87aa1fa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,13 +3,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; -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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { CheckCircle, Clock, DollarSign, MapPin, Wrench } from "lucide-react"; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { CheckCircle, Clock, DollarSign, MapPin, Wrench, ShieldCheck, WrenchIcon, Gauge } from "lucide-react"; export default function LandingPage() { return ( @@ -19,250 +19,118 @@ export default function LandingPage() { borderRadius="soft" contentWidth="smallMedium" sizing="largeSmallSizeLargeTitles" - background="grid" - cardStyle="solid" - primaryButtonStyle="flat" - secondaryButtonStyle="radial-glow" - headingFontWeight="normal" + background="noiseDiagonalGradient" + cardStyle="glass-depth" + primaryButtonStyle="primary-glow" + secondaryButtonStyle="solid" + headingFontWeight="semibold" >
-
-
-
-
-- 2.49.1 From 503a03cff7cef50b7d8a2b1f4ee72161f9b362a3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 21:28:51 +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 fd9ebfc..01aa940 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: #120006e6; - --primary-cta: #e63946; + --background: #f5f5f5; + --card: #ffffff; + --foreground: #1c1c1c; + --primary-cta: #1c1c1c; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #ffffff; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #15479c; + --background-accent: #a8cce8; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1