@component('layouts.app', [ 'title' => 'Mobile App', 'metaDescription' => 'The Fintech 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.', 'theme' => 'blue'], ['icon' => 'fa-bell', 'title' => 'Live Notifications', 'desc' => 'Get pinged the moment you tap in or out.', 'theme' => 'gold'], ['icon' => 'fa-clock-rotate-left', 'title' => 'Transaction Timeline', 'desc' => 'Every trip and recharge, in one scrollable feed.', 'theme' => 'teal'], ['icon' => 'fa-sliders', 'title' => 'Card Management', 'desc' => 'Freeze, recharge, or replace your card in seconds.', 'theme' => 'purple'], ] 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('frontend.partials.home.download-app') @include('frontend.partials.home.cta') @endcomponent