42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php
|
|
|
|
use Livewire\Component;
|
|
|
|
new class extends Component
|
|
{
|
|
//
|
|
};
|
|
?>
|
|
|
|
<div class="flex flex-col gap-6 px-4 pt-6 pb-4">
|
|
<div>
|
|
<p class="text-sm text-muted-foreground">Welcome back,</p>
|
|
<h1 class="text-2xl font-bold text-foreground">Alex Rivera</h1>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-3 gap-3">
|
|
<div class="flex flex-col items-center gap-1 rounded-xl border border-border bg-card p-3">
|
|
<div class="grid h-10 w-10 place-items-center rounded-xl bg-primary/15 text-primary-foreground mb-2">
|
|
<x-bi-people class="h-6 w-6 text-primary" />
|
|
</div>
|
|
<span class="font-bold text-xl">2</span>
|
|
<span class="text-muted-foreground text-sm">Groups</span>
|
|
</div>
|
|
<div class="flex flex-col items-center gap-1 rounded-xl border border-border bg-card p-3">
|
|
<div class="grid h-10 w-10 place-items-center rounded-xl bg-accent/15 text-primary-foreground mb-2">
|
|
<x-solar-medal-ribbon-linear class="h-6 w-6 text-accent" />
|
|
</div>
|
|
<span class="font-bold text-xl">2</span>
|
|
<span class="text-muted-foreground text-sm">Groups</span>
|
|
</div>
|
|
<div class="flex flex-col items-center gap-1 rounded-xl border border-border bg-card p-3">
|
|
<div class="grid h-10 w-10 place-items-center rounded-xl bg-card-foreground/15 text-primary-foreground mb-2">
|
|
<x-phosphor-trend-up class="h-6 w-6 text-card-foreground" />
|
|
</div>
|
|
<span class="font-bold text-xl">2</span>
|
|
<span class="text-muted-foreground text-sm">Groups</span>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|