@component('layouts.app', [ 'title' => "What's New", 'metaDescription' => 'The latest Fintech app updates — new features, improvements, and fixes in every release.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Changelog', 'title' => "What's New", 'subtitle' => 'Every update we ship to the Fintech app, in one place.', ])
@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('frontend.partials.home.cta') @endcomponent