From c5fba69ec876089a58240c5c6e78a2cd4458bbd6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 09:17:45 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 102 +++++++++++++++++++++++++++++++---------- 1 file changed, 78 insertions(+), 24 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ae1bd5d..b5ee75d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,11 +3,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { MapPin, Phone } from "lucide-react"; +import { MapPin, Zap, Phone, CheckCircle } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -69,19 +70,46 @@ export default function AboutPage() { navItems={navItems} button={{ text: "Call Now", href: "tel:2108488465" }} brandName="210Pristine" - buttonClassName="font-mulish" + /> + + +
+
-
- +
Date: Fri, 6 Mar 2026 09:17:46 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c6f6c25..b007273 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,9 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactCTA from "@/components/sections/contact/ContactCTA"; -import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Phone, Mail } from "lucide-react"; +import { Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -68,7 +67,6 @@ export default function ContactPage() { navItems={navItems} button={{ text: "Call Now", href: "tel:2108488465" }} brandName="210Pristine" - buttonClassName="font-mulish" />
@@ -77,11 +75,11 @@ export default function ContactPage() { tag="Get in Touch" tagIcon={Phone} tagAnimation="slide-up" - title="Ready to Book Your Detailing?" - description="Contact us today to schedule your appointment. We're available for same-day service in most cases and serve all of San Antonio and surrounding areas." + title="Contact 210Pristine Mobile Detailing" + description="Have questions about our services? Ready to book your appointment? We're here to help. Call us today or fill out a contact form and we'll get back to you within 24 hours." buttons={[ { text: "Call (210) 848-8465", href: "tel:2108488465" }, - { text: "Email Us", href: "mailto:info@210pristine.com" }, + { text: "Send Email", href: "mailto:info@210pristine.com" }, ]} buttonAnimation="slide-up" background={{ variant: "plain" }} @@ -89,27 +87,6 @@ export default function ContactPage() { /> -
- -
- + +
+
+ +
+
Date: Fri, 6 Mar 2026 09:22:08 +0000 Subject: [PATCH 5/5] Update theme colors --- src/app/styles/variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd9ebfc..1149b65 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,7 +12,7 @@ --background: #ffffff; --card: #f9f9f9; - --foreground: #120006e6; + --foreground: #e91515; --primary-cta: #e63946; --primary-cta-text: #ffffff; --secondary-cta: #f9f9f9; -- 2.49.1