Merge version_1_1782002591291 into main

Merge version_1_1782002591291 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-21 00:45:09 +00:00

View File

@@ -7,56 +7,69 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
<div id="hero-home" data-section="hero-home">
<SectionErrorBoundary name="hero-home">
<div id="hero-home" data-section="hero-home">
<SectionErrorBoundary name="hero-home">
<HeroBillboard
tag="Driver Empowerment Program"
title="Empowering Drivers, Building Futures"
description="CRSH Trucking Company is giving out 200 trucks to eligible drivers across Canada, Germany, the UK, and the USA. Own your truck with only a 20% deposit."
primaryButton={{
text: "Contact Us to Apply", href: "/contact"}}
secondaryButton={{
text: "Learn More", href: "/about"}}
imageSrc="http://img.b2bpic.net/free-photo/night-trucking-delivers-cargo-steel-warehouse-generated-by-ai_188544-17396.jpg"
/>
</SectionErrorBoundary>
</div>
tag="Driver Empowerment Program"
title="Empowering Drivers, Building Futures"
description="CRSH Trucking Company is giving out 200 trucks to eligible drivers across Canada, Germany, the UK, and the USA. Own your truck with only a 20% deposit."
primaryButton={{ text: "Contact Us to Apply", href: "/contact" }}
secondaryButton={{ text: "Learn More", href: "/about" }}
imageSrc="http://img.b2bpic.net/free-photo/night-trucking-delivers-cargo-steel-warehouse-generated-by-ai_188544-17396.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardFeatures
imageSrc="http://img.b2bpic.net/free-vector/abstract-business-logo-template_1043-161.jpg"
/>
</SectionErrorBoundary>
</div>
badge="Program Excellence"
title="Global Trucking Solutions"
description="Providing reliable equipment and support for drivers across Canada, Germany, the UK, and the USA."
primaryButton={{ text: "Get Started", href: "/contact" }}
secondaryButton={{ text: "Learn More", href: "/about" }}
features={[
{ title: "Affordable", description: "Low 20% deposit requirements." },
{ title: "Global Reach", description: "Available in 4 major markets." },
{ title: "Reliable", description: "Proven track record of success." }
]}
imageSrc="http://img.b2bpic.net/free-vector/abstract-business-logo-template_1043-161.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="testimonials-home" data-section="testimonials-home">
<SectionErrorBoundary name="testimonials-home">
<div id="testimonials-home" data-section="testimonials-home">
<SectionErrorBoundary name="testimonials-home">
<TestimonialQuoteCards
title="Driver Stories"
description="See how we empower drivers globally."
testimonials={[
{
name: "Michael Rodriguez (USA)", role: "Truck Owner", quote: "Truck ownership felt impossible with rising costs. This program gave me hope.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-as-truck-driver_23-2151489802.jpg"},
{
name: "Emily Carter (Canada)", role: "Truck Owner", quote: "Ive driven for companies for over 12 years. Finally, I own my truck.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-as-truck-driver_23-2151489716.jpg"},
{
name: "Hans Müller (Germany)", role: "Truck Owner", quote: "After 15 years of driving, I never imagined owning my own truck. CRSH made it possible.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-male-scuba-diving-mask-orange-neopren-diving-suit-isolated-grey-background_613910-16243.jpg"},
{
name: "Sarah Thompson (UK)", role: "Truck Owner", quote: "I was skeptical at first, but when I received the key, I knew this was genuine.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-businesswoman-sitting-back-seat-car_657921-505.jpg"},
{
name: "James Walker (USA)", role: "Truck Owner", quote: "CRSH Truck Company made ownership possible for me.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-young-man-car_23-2147873928.jpg"},
]}
tag="Stories"
/>
</SectionErrorBoundary>
</div>
title="Driver Stories"
description="See how we empower drivers globally."
testimonials={[
{
name: "Michael Rodriguez (USA)", role: "Truck Owner", quote: "Truck ownership felt impossible with rising costs. This program gave me hope.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-as-truck-driver_23-2151489802.jpg"
},
{
name: "Emily Carter (Canada)", role: "Truck Owner", quote: "Ive driven for companies for over 12 years. Finally, I own my truck.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-as-truck-driver_23-2151489716.jpg"
},
{
name: "Hans Müller (Germany)", role: "Truck Owner", quote: "After 15 years of driving, I never imagined owning my own truck. CRSH made it possible.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-male-scuba-diving-mask-orange-neopren-diving-suit-isolated-grey-background_613910-16243.jpg"
},
{
name: "Sarah Thompson (UK)", role: "Truck Owner", quote: "I was skeptical at first, but when I received the key, I knew this was genuine.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-businesswoman-sitting-back-seat-car_657921-505.jpg"
},
{
name: "James Walker (USA)", role: "Truck Owner", quote: "CRSH Truck Company made ownership possible for me.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-young-man-car_23-2147873928.jpg"
},
]}
tag="Stories"
/>
</SectionErrorBoundary>
</div>
<div id="blog" data-section="blog">
<SectionErrorBoundary name="blog">
<div id="blog" data-section="blog">
<SectionErrorBoundary name="blog">
<BlogSimpleCards tag="News" title="Latest Updates" description="Stay informed about the CRSH Trucking Program" />
</SectionErrorBoundary>
</div>
</SectionErrorBoundary>
</div>
</>
);
}