From b9f65e81a9f4c36dae6c149a9ca3ea33df60b1ac Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 02:00:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 97 +++++++++++++++++++++++------------------------- 1 file changed, 46 insertions(+), 51 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 365c78c..575b901 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,27 +6,25 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating 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 { Star, Wrench, ShieldCheck, Phone, Zap, Droplets, Gauge } from "lucide-react"; +import { Star } from "lucide-react"; export default function Page() { return (
@@ -137,10 +132,10 @@ export default function Page() { logoText="Diaz Plumbing Solution LLC" imageSrc="http://img.b2bpic.net/free-photo/car-mechanic-repairs-blue-car-rise-garage_1157-46538.jpg" columns={[ - { title: "Quick Links", items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }] }, + { title: "Company", items: [{ label: "Home", href: "#" }, { label: "About", href: "#about" }] }, + { title: "Services", items: [{ label: "Emergency", href: "tel:2143165729" }, { label: "Repairs", href: "#services" }] }, { title: "Contact", items: [{ label: "214-316-5729", href: "tel:2143165729" }, { label: "Dallas, TX", href: "#" }] } ]} - copyrightText="© 2025 Diaz Plumbing Solution LLC" />
-- 2.49.1 From c5eaee95856ef891ec4c45ec88f979a05220864f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 02:00:30 +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 99a809c..7a00825 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: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #1f7cff; --primary-cta-text: #ffffff; - --secondary-cta: #e0e7ff; + --secondary-cta: #010101; --secondary-cta-text: #1e3a5f; - --accent: #3b82f6; - --background-accent: #60a5fa; + --accent: #1f7cff; + --background-accent: #f96b2f; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1