Add mobile topbar titles and show Afia on all mobile headers.
Deploy Ladill Hosting / deploy (push) Successful in 26s

Route-based subtitle and page titles replace plain app labels in mobile topbars, and the Afia AI button is visible on mobile across topbars and mobile-page-header screens.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-07 16:30:31 +00:00
co-authored by Cursor
parent b7b9e5ef05
commit d3a379d5bc
7 changed files with 93 additions and 9 deletions
@@ -0,0 +1,10 @@
@php
$subtitle = $mobileTopbarSubtitle ?? null;
$title = $mobileTopbarTitle ?? 'Overview';
@endphp
<div class="min-w-0 flex-1 lg:hidden">
@if ($subtitle)
<p class="text-xs font-semibold uppercase tracking-[0.18em] text-slate-400">{{ $subtitle }}</p>
@endif
<h1 class="truncate text-base font-semibold text-slate-900">{{ $title }}</h1>
</div>