From 200824cdf08ec68a4253207382629acf2ea1e7f7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 23:32:04 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 214 ++++++++------------------------------- 1 file changed, 42 insertions(+), 172 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6de2e35..d85b57b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,10 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import { Clock, MapPin, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -23,177 +21,49 @@ export default function LandingPage() { headingFontWeight="bold" > - + -
- -
+
+ +
-
- -
- - +
); -- 2.49.1 From 0a8fae6d61081aed848a83ba1f61a11022169cb9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 23:32:05 +0000 Subject: [PATCH 2/2] Update src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 7b052c8..136b4b8 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -49,16 +49,16 @@ export default function LandingPage() { testimonials={[ { id: "1", name: "Sarah J.", role: "Local Resident", company: "Nashville", rating: 5, - text: "White Bridge Auto Wash is consistently the best car wash in Nashville. My car always looks showroom ready!", imageSrc: "http://img.b2bpic.net/free-photo/young-man-buying-car-showroom_1303-16352.jpg", imageAlt: "Happy customer after car wash"}, + testimonial: "White Bridge Auto Wash is consistently the best car wash in Nashville. My car always looks showroom ready!", imageSrc: "http://img.b2bpic.net/free-photo/young-man-buying-car-showroom_1303-16352.jpg", imageAlt: "Happy customer after car wash"}, { id: "2", name: "Mark T.", role: "Business Owner", company: "Nashville", rating: 5, - text: "Fast, efficient, and friendly service. I'm a regular here and wouldn't go anywhere else. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-man-airport-is-waiting-flight_146671-18023.jpg", imageAlt: "Man happy with clean car"}, + testimonial: "Fast, efficient, and friendly service. I'm a regular here and wouldn't go anywhere else. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-man-airport-is-waiting-flight_146671-18023.jpg", imageAlt: "Man happy with clean car"}, { id: "3", name: "Emily R.", role: "Daily Commuter", company: "Nashville", rating: 4, - text: "I love the attention to detail. Even a basic wash leaves my car spotless. The staff are always so kind.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-satisfied-bearded-guy-white-shirt-showing-thumbs-up-approval-like-agree-positive-answer_1258-26715.jpg", imageAlt: "Woman smiling next to clean car"}, + testimonial: "I love the attention to detail. Even a basic wash leaves my car spotless. The staff are always so kind.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-satisfied-bearded-guy-white-shirt-showing-thumbs-up-approval-like-agree-positive-answer_1258-26715.jpg", imageAlt: "Woman smiling next to clean car"}, { id: "4", name: "David P.", role: "Car Enthusiast", company: "Nashville", rating: 5, - text: "For someone who truly cares about their vehicle's appearance, White Bridge Auto Wash delivers excellence every time.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-blonde-handsome-man-thumbs-up-looking-camera-isolated-white-background-with-copy-space_141793-65656.jpg", imageAlt: "Man with thumbs up for a clean car"}, + testimonial: "For someone who truly cares about their vehicle's appearance, White Bridge Auto Wash delivers excellence every time.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-blonde-handsome-man-thumbs-up-looking-camera-isolated-white-background-with-copy-space_141793-65656.jpg", imageAlt: "Man with thumbs up for a clean car"}, ]} kpiItems={[ { -- 2.49.1