From 251eeeab16fd4925f1c089b7c77efdfbb6b6c05f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 03:07:17 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 314 ++++++++--------------------------------------- 1 file changed, 51 insertions(+), 263 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 67da1ef..4d182d9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,15 +3,13 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroOverlay from "@/components/sections/hero/HeroOverlay"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; -import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; +import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react"; export default function HvacPage() { @@ -39,297 +37,87 @@ export default function HvacPage() { { name: "Contact", id: "contact" }, ]} button={{ text: "Get a Quote", href: "#contact" }} - animateOnLoad={false} />
-
-
-
-
- - -
- +
-
- + +
+ +
+
-
); -} +} \ No newline at end of file -- 2.49.1 From 497a06c8bd78909606593a8560e99b832d2628c0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 03:07:17 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..be35e85 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-manrope), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-manrope), sans-serif; } -- 2.49.1 From 750ccf7442fce3e58f4d08fc19365f4c30280fba Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 03:07:18 +0000 Subject: [PATCH 3/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 99a809c..ac6f7bd 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f8fafc; - --card: #ffffff; - --foreground: #0f172a; - --primary-cta: #1d4ed8; + --background: #000000; + --card: #121212; + --foreground: #ffffff; + --primary-cta: #8b5cf6; --primary-cta-text: #ffffff; - --secondary-cta: #e0e7ff; + --secondary-cta: #1e1e1e; --secondary-cta-text: #1e3a5f; - --accent: #3b82f6; - --background-accent: #60a5fa; + --accent: #0ea5e9; + --background-accent: #0a0a0a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1