first commit

This commit is contained in:
2025-12-21 08:03:18 +07:00
commit 7c746f776a
300 changed files with 24836 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
@props([
'title',
'desc' => '',
])
<div {{ $attributes->merge(['class' => 'rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]']) }}>
<!-- Card Header -->
<div class="px-6 py-5">
<h3 class="text-base font-medium text-gray-800 dark:text-white/90">
{{ $title }}
</h3>
@if($desc)
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
{{ $desc }}
</p>
@endif
</div>
<!-- Card Body -->
<div class="p-4 border-t border-gray-100 dark:border-gray-800 sm:p-6">
<div class="space-y-6">
{{ $slot }}
</div>
</div>
</div>