import { Link } from 'react-router-dom'; import { ChevronRight } from 'lucide-react'; const teamMembers = [ { name: 'Alexis Chen', role: 'Founder & CEO', bio: 'Former Tesla executive with over 15 years of experience in the electric vehicle industry. Passionate about sustainable transportation and innovative mobility solutions.', image: 'https://images.unsplash.com/photo-1564564321837-a57b7070ac4f?q=80&w=200&h=200&auto=format&fit=crop', }, { name: 'Marcus Johnson', role: 'CTO', bio: 'Tech innovator with background in automotive software and AI. Led development of several EV charging networks before joining CarFleet to revolutionize electric vehicle rentals.', image: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200&h=200&auto=format&fit=crop', }, { name: 'Sophia Rodriguez', role: 'COO', bio: 'Operations expert who previously scaled multiple tech startups. Oversees our network of locations and ensures every rental experience exceeds customer expectations.', image: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=200&h=200&auto=format&fit=crop', }, { name: 'David Kim', role: 'Head of Customer Experience', bio: 'Hospitality industry veteran focused on creating premium experiences. Designs our customer journey from booking to return with a focus on convenience and satisfaction.', image: 'https://images.unsplash.com/photo-1500648767791-00dcc994a43e?q=80&w=200&h=200&auto=format&fit=crop', }, ]; const timeline = [ { year: '2021', title: 'Company Founded', description: 'CarFleet was founded with a vision to accelerate the adoption of electric vehicles through flexible rental and subscription options.', }, { year: '2022', title: 'First Location Launch', description: 'Opened our first rental location in San Francisco with a fleet of 20 Tesla vehicles.', }, { year: '2023', title: 'Expansion to Major Cities', description: 'Expanded to Los Angeles, New York, Miami, Chicago, and Seattle with an increased fleet of 200+ vehicles.', }, { year: '2024', title: 'Introduction of Premium Subscription Plans', description: 'Launched our tiered subscription plans to provide flexible options for different usage needs.', }, { year: '2025', title: 'Expansion to Additional EV Brands', description: 'Added other premium electric vehicle brands to our fleet while maintaining our core Tesla rental business.', }, ]; const AboutPage = () => { return (
{/* Hero Section */}

About CarFleet

We're on a mission to accelerate the world's transition to sustainable transportation by making electric vehicles accessible to everyone.

{/* Mission Section */}

Our Mission

At CarFleet, we believe that the future of transportation is electric. Our mission is to accelerate the adoption of sustainable transportation by providing accessible electric vehicle rental and subscription options.

We're committed to reducing carbon emissions and fighting climate change by helping more people experience the benefits of electric vehicles without the commitment of ownership.

Through our flexible rental plans, premium customer service, and growing network of charging stations, we're making electric mobility convenient and enjoyable for everyone.

{/* Company Timeline */}

Our Journey

{timeline.map((item, index) => (
{item.year}

{item.title}

{item.description}

))}
{/* Team Section */}

Our Team

{teamMembers.map((member, index) => (
{member.name}

{member.name}

{member.role}

{member.bio}

))}
{/* Values Section */}

Our Values

These core principles guide everything we do, from how we treat our customers to how we develop our services.

Sustainability

We're committed to reducing carbon emissions and promoting sustainable transportation. Our all-electric fleet helps customers reduce their environmental footprint.

Innovation

We embrace cutting-edge technology and continuously improve our services. From our app to our vehicle features, we're always looking for ways to enhance the customer experience.

Accessibility

We believe everyone should have access to premium electric vehicles. Our flexible rental and subscription options make it possible for more people to experience the future of transportation.

{/* CTA Section */}

Join Our Vision

Experience the future of transportation today. Rent a Tesla or subscribe to one of our premium plans.

Browse Electric Vehicles View Subscription Plans
); }; export default AboutPage;