initial commit
This commit is contained in:
commit
0c42bef077
109 changed files with 16545 additions and 0 deletions
18
resources/views/components/header.blade.php
Normal file
18
resources/views/components/header.blade.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<div class="text-white flex flex-col gap-5 sm:flex-row sm:justify-between sm:m-5 mt-5 items-center">
|
||||
<x-site-logo/>
|
||||
@auth
|
||||
<ul class="flex flex-row gap-4 font-bold text-2xl my-auto">
|
||||
<li><a href="/lists" wire:navigate>Lists</a></li>
|
||||
<li>Schedule</li>
|
||||
<li>
|
||||
<form method="POST" action="{{ route('logout') }}" class="inline">
|
||||
@csrf
|
||||
<button type="submit"
|
||||
class="cursor-pointer text-inherit bg-transparent border-none p-0 font-inherit">
|
||||
Logout
|
||||
</button>
|
||||
</form>
|
||||
</li>
|
||||
</ul>
|
||||
@endauth
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue