mirror of
https://github.com/kevin-DL/gothstarter.git
synced 2026-01-11 10:04:34 +00:00
20 lines
677 B
Plaintext
20 lines
677 B
Plaintext
package components
|
|
|
|
templ Navigation() {
|
|
<div class="border-b border-gray-800 py-2">
|
|
<div class="container mx-auto">
|
|
<div class="flex justify-between">
|
|
<div class>GOTHSTARTER</div>
|
|
<div class="flex space-x-12">
|
|
<div class="space-x-3 flex text-blue-500"></div>
|
|
<div>
|
|
<button type="button" class="inline-flex items-center justify-center px-4 py-2 text-sm font-medium tracking-wide text-white transition-colors duration-200 rounded-md bg-neutral-950 hover:bg-neutral-900 focus:ring-2 focus:ring-offset-2 focus:ring-neutral-900 focus:shadow-outline focus:outline-none">
|
|
login
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|