Files
gobeyhan/views/admin/dashboard.templ
Beyhan Oğur f34e54c5a5 first commit
2026-04-26 21:43:40 +03:00

14 lines
406 B
Plaintext

package admin
templ Dashboard() {
@Layout("Dashboard") {
<div class="px-4 py-6 sm:px-0">
<div class="h-96 rounded-lg border-4 border-dashed border-gray-200">
<div class="flex items-center justify-center h-full">
<h1 class="text-3xl font-bold text-gray-400">Dashboard Content</h1>
</div>
</div>
</div>
}
}