import { Card, CardContent } from "@/components/ui/card"; import { COMPANY_NAME } from "@/util/constant"; export default function About() { const stats = [ { value: "15+", label: "Years Experience" }, { value: "50K+", label: "Trucks Sold" }, { value: "98%", label: "Customer Satisfaction" } ]; return (

{COMPANY_NAME}

For over 15 years, {COMPANY_NAME} has been the leading marketplace for commercial vehicles, connecting buyers and sellers across the nation. We understand that purchasing a commercial truck is a significant investment, which is why we're committed to providing a transparent, secure, and efficient platform.

Our team of industry experts carefully vets every listing, ensuring you have access to quality vehicles and trusted dealers. Whether you're a fleet manager, owner-operator, or business owner, we're here to help you find the perfect commercial vehicle for your needs.

{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
TruckHub dealership showroom
{/* Mission and Values */}

Our Mission

To simplify commercial vehicle transactions by providing a trusted, transparent, and efficient marketplace that serves the needs of buyers and sellers nationwide.

Our Vision

To be the most trusted and comprehensive platform for commercial vehicle transactions, setting the industry standard for quality and customer service.

Our Values

Integrity, transparency, customer focus, and innovation drive everything we do. We believe in building lasting relationships based on trust and mutual success.

{/* Team Section */}

Our Team

Meet the dedicated professionals who make TTD the trusted choice for commercial vehicle transactions

{[ { name: "Michael Rodriguez", role: "CEO & Founder", image: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=400", bio: "20+ years in commercial vehicle industry" }, { name: "Sarah Chen", role: "VP of Sales", image: "https://images.unsplash.com/photo-1494790108755-2616b612b829?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=400", bio: "Expert in fleet management and acquisitions" }, { name: "David Thompson", role: "Technical Director", image: "https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=400", bio: "Technology innovation and platform development" } ].map((member, index) => ( {member.name}

{member.name}

{member.role}

{member.bio}

))}
{/* Company History */}

Our Journey

2009

Company Founded

{COMPANY_NAME} was established with a vision to transform the commercial vehicle marketplace.

2015

Platform Expansion

Launched our comprehensive online platform serving customers nationwide.

2020

Digital Innovation

Introduced advanced search features and mobile-first design for better user experience.

2024

Industry Leadership

Reached 50,000+ successful transactions and became the most trusted platform in the industry.

); };