14 lines
406 B
Plaintext
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>
|
|
}
|
|
}
|