101 lines
3.2 KiB
HTML
101 lines
3.2 KiB
HTML
<nav class="bg-deep-blue text-gray-300 border-b border-deep-blue-contrast">
|
|
<div class="max-w-full mx-auto px-4">
|
|
<div class="flex justify-between items-center h-14">
|
|
<div class="flex items-center space-x-6">
|
|
<a routerLink="/" class="flex items-center">
|
|
<span class="text-white text-xl font-semibold">Trustworthy Casino</span>
|
|
</a>
|
|
<div class="hidden md:flex items-center space-x-1">
|
|
<a
|
|
routerLink="/games"
|
|
class="px-3 py-2 rounded-md text-sm hover:bg-deep-blue-contrast transition-colors duration-200"
|
|
>Games</a
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hidden md:flex items-center space-x-4">
|
|
@if (!isLoggedIn) {
|
|
<button
|
|
(click)="login()"
|
|
class="cursor-pointer px-4 py-1.5 rounded bg-emerald-500 hover:bg-emerald-600 text-white text-sm font-medium transition-colors duration-200"
|
|
>
|
|
Login
|
|
</button>
|
|
}
|
|
@if (isLoggedIn) {
|
|
<button
|
|
(click)="logout()"
|
|
class="cursor-pointer px-4 py-1.5 rounded bg-emerald-500 hover:bg-emerald-600 text-white text-sm font-medium transition-colors duration-200"
|
|
>
|
|
Logout
|
|
</button>
|
|
}
|
|
</div>
|
|
|
|
<div class="md:hidden">
|
|
<button
|
|
(click)="toggleMenu()"
|
|
class="text-gray-300 hover:text-white transition-colors duration-200"
|
|
>
|
|
<svg
|
|
class="h-6 w-6"
|
|
[class.hidden]="isMenuOpen"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M4 6h16M4 12h16M4 18h16"
|
|
/>
|
|
</svg>
|
|
<svg
|
|
class="h-6 w-6"
|
|
[class.hidden]="!isMenuOpen"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M6 18L18 6M6 6l12 12"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div [class]="isMenuOpen ? 'block' : 'hidden'" class="md:hidden">
|
|
<div class="p-2 pt-2 mb-4 space-y-1 bg-deep-blue-contrast rounded-b-lg">
|
|
<a
|
|
routerLink="/games"
|
|
class="block px-3 py-2 rounded-md text-sm hover:bg-deep-blue-light transition-colors duration-200"
|
|
>Games</a
|
|
>
|
|
<div class="pt-2 space-y-2">
|
|
@if (!isLoggedIn) {
|
|
<button
|
|
(click)="login()"
|
|
class="cursor-pointer w-full px-4 py-1.5 rounded bg-emerald-500 hover:bg-emerald-600 text-white text-sm font-medium transition-colors duration-200"
|
|
>
|
|
Login
|
|
</button>
|
|
}
|
|
@if (isLoggedIn) {
|
|
<button
|
|
(click)="logout()"
|
|
class="cursor-pointer w-full px-4 py-1.5 rounded bg-emerald-500 hover:bg-emerald-600 text-white text-sm font-medium transition-colors duration-200"
|
|
>
|
|
Logout
|
|
</button>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|