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>
11 lines
370 B
PHP
11 lines
370 B
PHP
@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>
|