clusev/resources/views/livewire/dashboard.blade.php

18 lines
987 B
PHP

<div class="mx-auto w-full max-w-3xl px-4 py-12 sm:px-6 sm:py-16">
<div class="rounded-lg border border-line bg-surface p-6 sm:p-8">
<p class="font-mono text-xs uppercase tracking-[0.2em] text-accent-text">Clusev</p>
<h1 class="mt-2 font-display text-2xl font-semibold text-ink sm:text-3xl">Dashboard</h1>
<p class="mt-3 max-w-prose text-sm text-ink-2">
Scaffold läuft im Container. Foundation steht Layout, Komponenten und der
Live-Channel folgen in v1.
</p>
<div class="mt-6 flex flex-wrap gap-2 font-mono text-xs">
<span class="rounded-sm bg-online/10 px-2 py-1 text-online">online</span>
<span class="rounded-sm bg-warning/10 px-2 py-1 text-warning">warning</span>
<span class="rounded-sm bg-offline/10 px-2 py-1 text-offline">offline</span>
<span class="rounded-sm border border-line px-2 py-1 text-ink-3">nginx.service</span>
</div>
</div>
</div>