15 lines
575 B
PHP
15 lines
575 B
PHP
<div class="glass p-4 space-y-3">
|
|
<h3 class="text-xs uppercase tracking-widest text-white/50 font-medium">Uptime</h3>
|
|
|
|
<div class="space-y-2">
|
|
<div class="flex items-center justify-between text-xs">
|
|
<span class="text-white/60">System</span>
|
|
<span class="font-mono text-white">{{ $u['system'] }}</span>
|
|
</div>
|
|
<div class="flex items-center justify-between text-xs">
|
|
<span class="text-white/60">Fox</span>
|
|
<span class="font-mono text-white">{{ $u['fox'] }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|