From 033886426ac374269ad1b9b7e6c7d26c713b93ec Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 07:12:05 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 113 +++++++++++++++++++---------------------------- 1 file changed, 45 insertions(+), 68 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0f83fea..561f868 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; export default function LandingPage() { return ( @@ -26,104 +26,81 @@ export default function LandingPage() { >
-
-
-
-
-
); -} \ No newline at end of file +} -- 2.49.1 From 5be883dc67173ebd251b895c7b9fd65ec7c811f3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 07:12:05 +0000 Subject: [PATCH 2/3] 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 36fab29..ac81d54 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #ffffff; - --primary-cta: #1f7cff; + --background: #fdf8f4; + --card: #ffffff; + --foreground: #1a0b00; + --primary-cta: #E34400; --primary-cta-text: #f5f4ef; - --secondary-cta: #010101; + --secondary-cta: #106EFB; --secondary-cta-text: #2a2928; - --accent: #1f7cff; - --background-accent: #f96b2f; + --accent: #FF7B05; + --background-accent: #f9f1e9; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1 From b7c02740e767e35ba0767b5c30613d8914b8e780 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 07:14:09 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 561f868..94646a1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -56,6 +56,8 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/man-walking-roof_1321-1041.jpg?_wi=2" imageAlt="Team working on a residential roof" useInvertedBackground={true} + mediaAnimation="opacity" + metricsAnimation="opacity" /> @@ -68,6 +70,8 @@ export default function LandingPage() { { id: "r1", title: "Roofing Installation", content: "Professional installation using the best materials in the market." }, { id: "r2", title: "Gutter Repairs", content: "Keep your home safe from water damage with our efficient gutter repair systems." } ]} + useInvertedBackground={false} + mediaAnimation="opacity" /> @@ -81,6 +85,7 @@ export default function LandingPage() { id: "t1", title: "Excellent Service!", quote: "The team did an amazing job on our roof replacement. Quick, professional, and reliable.", name: "Sarah J.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/man-walking-roof_1321-1041.jpg?_wi=4" } ]} + useInvertedBackground={false} /> @@ -90,6 +95,7 @@ export default function LandingPage() { title="Ready for a free estimate?" description="Let us help you with your next roofing project. Our team is ready to provide you with a consultation." background={{ variant: "rotated-rays-static" }} + useInvertedBackground={false} /> -- 2.49.1