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,38 @@
@props(['pageTitle' => 'Page'])
<div class="flex flex-wrap items-center justify-between gap-3 mb-6">
<h2 class="text-xl font-semibold text-gray-800 dark:text-white/90">
{{ $pageTitle }}
</h2>
<nav>
<ol class="flex items-center gap-1.5">
<li>
<a
class="inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400"
href="{{ url('/') }}"
>
Home
<svg
class="stroke-current"
width="17"
height="16"
viewBox="0 0 17 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.0765 12.667L10.2432 8.50033L6.0765 4.33366"
stroke=""
stroke-width="1.2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
<li class="text-sm text-gray-800 dark:text-white/90">
{{ $pageTitle }}
</li>
</ol>
</nav>
</div>