24 lines
759 B
PHP
Raw Normal View History

2023-04-19 12:42:15 +02:00
<nav class="flex gap-2 ">
@auth
2023-05-12 12:22:41 +02:00
<div class="fixed left-0 top-2">
<a href="/">Home</a>
<a href="/command-center">Command Center</a>
<a href="/profile">Profile</a>
@if (auth()->user()->isRoot())
<a href="/settings">Settings</a>
@endif
</div>
2023-05-10 19:26:28 +02:00
<div class="flex-1"></div>
2023-05-12 12:22:41 +02:00
<x-magic-bar />
<div class="flex-1"></div>
<div class="fixed right-0 flex gap-2 top-2">
<form action="/logout" method="POST">
@csrf
<x-inputs.button type="submit">Logout</x-inputs.button>
</form>
<livewire:check-update />
<livewire:force-upgrade />
</div>
2023-04-28 15:08:48 +02:00
@endauth
2023-03-20 12:04:22 +00:00
</nav>