2 Commits

Author SHA1 Message Date
a5c9c33708 Update src/app/page.tsx 2026-03-10 04:28:32 +00:00
ed43e3e70a Merge version_2 into main
Merge version_2 into main
2026-03-10 04:25:04 +00:00

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
{ name: "Service Area", id: "location" }, { name: "Service Area", id: "location" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Request Tow", href: "#contact" }} button={{ text: "Request Tow", href: "sms:+15097656029" }}
/> />
</div> </div>
@@ -52,7 +52,7 @@ export default function LandingPage() {
tagIcon={Truck} tagIcon={Truck}
buttons={[ buttons={[
{ text: "Read Reviews", href: "#testimonials" }, { text: "Read Reviews", href: "#testimonials" },
{ text: "Request Tow", href: "#contact" } { text: "Request Tow", href: "sms:+15097656029" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/urgent-situation-two-young-paramedics-ambulance-male-caucasian-paramedic-driving-talking-radio_657921-1515.jpg" imageSrc="http://img.b2bpic.net/free-photo/urgent-situation-two-young-paramedics-ambulance-male-caucasian-paramedic-driving-talking-radio_657921-1515.jpg"
imageAlt="Professional towing truck at roadside" imageAlt="Professional towing truck at roadside"
@@ -95,15 +95,21 @@ export default function LandingPage() {
features={[ features={[
{ {
id: 1, id: 1,
tag: "Emergency", title: "Emergency Towing", subtitle: "24/7 Response Available", description: "Professional emergency towing service for accident recovery, breakdowns, and mechanical failures. Our experienced drivers handle vehicle transport safely and securely to your preferred destination.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-checking-engine_23-2148270679.jpg", imageAlt: "Emergency towing service" tag: "Emergency", title: "Emergency Towing", subtitle: "24/7 Response Available", description: "Professional emergency towing service for accident recovery, breakdowns, and mechanical failures. Our experienced drivers handle vehicle transport safely and securely to your preferred destination.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-checking-engine_23-2148270679.jpg", imageAlt: "Emergency towing service", buttons: [
{ text: "Request Service", href: "sms:+15097656029" }
]
}, },
{ {
id: 2, id: 2,
tag: "Recovery", title: "Roadside Assistance", subtitle: "Help When You Need It", description: "Comprehensive roadside help including jump starts, flat tire service, lockout assistance, and fuel delivery. We get you back on the road quickly without expensive towing when possible.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-female-mechanic-holding-wrench_23-2148327566.jpg", imageAlt: "Roadside assistance service" tag: "Recovery", title: "Roadside Assistance", subtitle: "Help When You Need It", description: "Comprehensive roadside help including jump starts, flat tire service, lockout assistance, and fuel delivery. We get you back on the road quickly without expensive towing when possible.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-female-mechanic-holding-wrench_23-2148327566.jpg", imageAlt: "Roadside assistance service", buttons: [
{ text: "Request Service", href: "sms:+15097656029" }
]
}, },
{ {
id: 3, id: 3,
tag: "Specialty", title: "Vehicle Recovery & Transport", subtitle: "Flatbed & Specialized Equipment", description: "Professional vehicle recovery for complex situations, equipment transport, and heavy-duty hauling. Our flatbed trucks and trained operators handle specialized transport needs safely.", imageSrc: "http://img.b2bpic.net/free-photo/yellow-utility-truck-with-hydraulic-lift-urban-infrastructure_169016-69860.jpg", imageAlt: "Flatbed vehicle transport" tag: "Specialty", title: "Vehicle Recovery & Transport", subtitle: "Flatbed & Specialized Equipment", description: "Professional vehicle recovery for complex situations, equipment transport, and heavy-duty hauling. Our flatbed trucks and trained operators handle specialized transport needs safely.", imageSrc: "http://img.b2bpic.net/free-photo/yellow-utility-truck-with-hydraulic-lift-urban-infrastructure_169016-69860.jpg", imageAlt: "Flatbed vehicle transport", buttons: [
{ text: "Request Service", href: "sms:+15097656029" }
]
} }
]} ]}
/> />
@@ -160,7 +166,7 @@ export default function LandingPage() {
animationType="entrance-slide" animationType="entrance-slide"
buttons={[ buttons={[
{ text: "Call Now: (509) 765-6029", href: "tel:+15097656029" }, { text: "Call Now: (509) 765-6029", href: "tel:+15097656029" },
{ text: "Request Service", href: "#" } { text: "Request Service", href: "sms:+15097656029" }
]} ]}
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
@@ -197,4 +203,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }