Update src/app/page.tsx

This commit is contained in:
2026-05-26 05:19:39 +00:00
parent 01f89987c7
commit f243f975fa

View File

@@ -12,6 +12,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { Star, Car, History } from 'lucide-react';
import { Nunito } from 'next/font/google';
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
@@ -67,7 +68,7 @@ export default function Page() {
<TextAbout
tag="Our Story"
title="Family-Owned, Community-Focused Car Care"
description="T & A Car Wash Plaza is a proud family-owned business dedicated to providing the best car wash experience in Rio Grande. We've been serving our community with reliable, high-quality car care, ensuring every customer drives away satisfied. Our bays are even wide enough for large trucks!"
body="T & A Car Wash Plaza is a proud family-owned business dedicated to providing the best car wash experience in Rio Grande. We've been serving our community with reliable, high-quality car care, ensuring every customer drives away satisfied. Our bays are even wide enough for large trucks!"
useInvertedBackground={false}
ariaLabel="About T & A Car Wash Plaza"
/>
@@ -95,12 +96,12 @@ export default function Page() {
title="Choose Your Perfect Wash Package"
description="Select from our range of packages designed to give your car the care it deserves, all at competitive prices."
products={[
{ id: "basic", name: "Basic Clean", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg?_wi=1", imageAlt: "Basic car wash" },
{ id: "premium", name: "Premium Shine", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg?_wi=1", imageAlt: "Premium car wash" },
{ id: "deluxe", name: "Deluxe Glow", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg?_wi=1", imageAlt: "Deluxe car wash" },
{ id: "ultimate", name: "Ultimate Protection", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg?_wi=2", imageAlt: "Ultimate car wash" },
{ id: "truckwash", name: "Truck Bay Wash", price: "Varies", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg?_wi=2", imageAlt: "Truck wash bay" },
{ id: "custom", name: "Custom Detailing", price: "Quote", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg?_wi=2", imageAlt: "Custom auto detailing" }
{ id: "basic", name: "Basic Clean", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg", imageAlt: "Basic car wash" },
{ id: "premium", name: "Premium Shine", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg", imageAlt: "Premium car wash" },
{ id: "deluxe", name: "Deluxe Glow", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg", imageAlt: "Deluxe car wash" },
{ id: "ultimate", name: "Ultimate Protection", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-car-washing-service_23-2149212225.jpg", imageAlt: "Ultimate car wash" },
{ id: "truckwash", name: "Truck Bay Wash", price: "Varies", imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-water-with-big-bubbles_23-2147933821.jpg", imageAlt: "Truck wash bay" },
{ id: "custom", name: "Custom Detailing", price: "Quote", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552299.jpg", imageAlt: "Custom auto detailing" }
]}
carouselMode="buttons"
gridVariant="three-columns-all-equal-width"