Polish Queue Devices empty state and align sidebar with other apps.
Deploy Ladill Queue / deploy (push) Successful in 38s

Match Care/Frontdesk nav icon styling, admin icons, and settings footer; add proper table layouts and empty states for Devices and Displays.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-29 21:22:44 +00:00
co-authored by Cursor
parent 660cc8d351
commit 051372672b
6 changed files with 199 additions and 50 deletions
@@ -0,0 +1,16 @@
@props(['title', 'description' => null])
<div {{ $attributes->merge(['class' => 'flex flex-col items-center justify-center px-6 py-14 text-center']) }}>
@if (isset($icon))
<div class="mb-4 flex h-12 w-12 items-center justify-center rounded-2xl bg-slate-100 text-slate-400">
{{ $icon }}
</div>
@endif
<h3 class="text-sm font-semibold text-slate-900">{{ $title }}</h3>
@if ($description)
<p class="mt-1 max-w-sm text-sm text-slate-500">{{ $description }}</p>
@endif
@if (isset($action))
<div class="mt-5">{{ $action }}</div>
@endif
</div>