@php $timeline = [ ['year' => '2023', 'title' => 'Founded in Kathmandu', 'desc' => 'Yatra Card started as a pilot with two bus operators and 500 riders.'], ['year' => '2024', 'title' => 'NRB License Granted', 'desc' => 'Became a licensed payment service provider under Nepal Rastra Bank.'], ['year' => '2025', 'title' => '100,000 Cards Issued', 'desc' => 'Crossed 100K active cards and 500+ partner buses across the valley.'], ['year' => '2026', 'title' => 'Nationwide Expansion', 'desc' => 'Rolling out to Pokhara, Bhaktapur, and inter-city routes.'], ]; $values = [ ['icon' => 'fa-heart', 'title' => 'Rider First', 'desc' => 'Every decision starts with what makes a commute easier.'], ['icon' => 'fa-shield-halved', 'title' => 'Trust & Security', 'desc' => 'We treat every rupee and every data point with the same care.'], ['icon' => 'fa-bolt', 'title' => 'Built for Speed', 'desc' => 'Fast boarding, fast recharge, fast support.'], ['icon' => 'fa-people-group', 'title' => 'Inclusive by Design', 'desc' => 'Discounts and accessibility for students, seniors, and everyone in between.'], ]; $leadership = [ ['name' => 'Rojina Maharjan', 'role' => 'Chief Executive Officer', 'img' => 44], ['name' => 'Sagar Bhattarai', 'role' => 'Chief Technology Officer', 'img' => 51], ['name' => 'Nisha Karki', 'role' => 'Head of Operations', 'img' => 29], ['name' => 'Dipesh Shrestha', 'role' => 'Head of Partnerships', 'img' => 60], ]; @endphp @component('layouts.app', [ 'title' => 'About Us', 'metaDescription' => 'The story behind Yatra Card — our mission, timeline, and the team building cashless transit for Nepal.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Company', 'title' => 'Building Nepal\'s Cashless Commute', 'subtitle' => 'We started with a simple frustration — fumbling for change on a moving bus — and built a card to end it.', ]) @include('partials.home.about')

Our Mission

Make every bus ride in Nepal cashless, fast, and fair — for commuters, operators, and the cities they move through.

Our Vision

A Nepal where one card carries you from a Kathmandu city bus to an inter-city coach — no cash, no separate tickets, no friction.

Our Journey

From Pilot to Platform

@foreach ($timeline as $i => $item)
{{ $i + 1 }}

{{ $item['year'] }}

{{ $item['title'] }}

{{ $item['desc'] }}

@endforeach
Yatra Card field operations team
Yatra Card counter staff assisting a rider Yatra Card engineers reviewing a terminal install
@include('partials.home.stats')

Core Values

What Drives Every Decision

@foreach ($values as $i => $value)

{{ $value['title'] }}

{{ $value['desc'] }}

@endforeach

Leadership

The People Behind Yatra Card

@foreach ($leadership as $i => $person)
{{ $person['name'] }}

{{ $person['name'] }}

{{ $person['role'] }}

@endforeach
@include('partials.home.cta') @endcomponent