@component('layouts.app', [ 'title' => 'Mobile App', 'metaDescription' => 'The Yatra Card app — recharge, check balance, view trip history, freeze your card, and get live tap notifications.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Wallet & Rewards', 'title' => 'Your Whole Card, In Your Pocket', 'subtitle' => 'Everything on the physical card — balance, history, controls — lives in the app too, always in sync.', ])
@foreach ([ ['icon' => 'fa-face-smile', 'title' => 'Face ID Login', 'desc' => 'Open the app instantly with biometric login.'], ['icon' => 'fa-bell', 'title' => 'Live Notifications', 'desc' => 'Get pinged the moment you tap in or out.'], ['icon' => 'fa-clock-rotate-left', 'title' => 'Transaction Timeline', 'desc' => 'Every trip and recharge, in one scrollable feed.'], ['icon' => 'fa-sliders', 'title' => 'Card Management', 'desc' => 'Freeze, recharge, or replace your card in seconds.'], ] as $i => $item)

{{ $item['title'] }}

{{ $item['desc'] }}

@endforeach
@php $screens = [ ['label' => 'Home & Balance', 'icon' => 'fa-house', 'img' => 'yatra-app-1'], ['label' => 'Trip History', 'icon' => 'fa-clock-rotate-left', 'img' => 'yatra-app-2'], ['label' => 'Card Controls', 'icon' => 'fa-sliders', 'img' => 'yatra-app-3'], ['label' => 'Notifications', 'icon' => 'fa-bell', 'img' => 'yatra-app-4'], ]; @endphp

See It In Action

A Quick Look Inside the App

@foreach ($screens as $screen)

{{ $screen['label'] }}

{{ $screen['label'] }}

@endforeach
@include('partials.home.download-app')

Changelog

What's New

@foreach ([ ['version' => 'v2.4.0', 'date' => 'Jun 2026', 'notes' => ['Added live tap notifications', 'Faster balance sync', 'Bug fixes for Android 14']], ['version' => 'v2.3.0', 'date' => 'Apr 2026', 'notes' => ['Introduced auto-reload thresholds', 'Redesigned transaction timeline']], ['version' => 'v2.2.0', 'date' => 'Feb 2026', 'notes' => ['Face ID login support', 'Card freeze/unfreeze from home screen']], ] as $release)
{{ $release['version'] }} {{ $release['date'] }}
    @foreach ($release['notes'] as $note)
  • · {{ $note }}
  • @endforeach
@endforeach
@include('partials.home.cta') @endcomponent