Shop, menu, and booking storefronts with OIDC SSO, Pay checkout, and merchant.ladill.com deployment workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
949 B
PHP
16 lines
949 B
PHP
<div class="relative shrink-0 border-b border-slate-100 px-4 pb-3 pt-3">
|
|
<div class="absolute left-1/2 top-2 h-1 w-10 -translate-x-1/2 rounded-full bg-slate-200 md:hidden"></div>
|
|
<div class="flex items-center justify-between gap-3 pt-2 md:pt-0">
|
|
<img src="{{ asset('images/logo/ladillmerchant-logo.svg') }}?v={{ @filemtime(public_path('images/logo/ladillmerchant-logo.svg')) ?: '1' }}"
|
|
alt="Ladill Merchant" class="h-5 w-auto shrink-0">
|
|
<button type="button"
|
|
@click="showSheet = false"
|
|
class="shrink-0 rounded-full p-1.5 text-slate-400 transition hover:bg-slate-100 hover:text-slate-700"
|
|
aria-label="Close">
|
|
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|