Archived
1
0
Fork 0

initial commit

This commit is contained in:
Henrik Hautakoski 2021-06-28 17:33:29 +01:00
commit 1e1aa7d461
215 changed files with 35140 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<footer class="max-w-7xl mx-auto px-8 py-4">
<p class="text-center text-gray-500 text-sm">
Copyright &copy; 2021 - <x-link href="https://www.shufflingpixels.com" target="_blank">shufflingpixels.com</x-link>
</p>
</footer>

View file

@ -0,0 +1,27 @@
<!-- Navigation starts -->
<nav class="w-full mx-auto bg-gray-800 border-b border-gray-700 shadow relative z-20">
<div class="max-w-7xl px-4 mx-auto h-16 flex items-center justify-between">
<ul class="flex items-center h-full space-x-2">
<!-- Logo -->
<!-- <li aria-label="Home" role="img" class="cursor-pointer">
<x-icon name="clock" class="text-indigo-400 w-12"/>
</li> -->
<x-nav-link href="{{ route('home') }}">{{ __('Roster') }}</x-nav-link>
<x-nav-link href="{{ route('recipe.index') }}">{{ __('Recipes') }}</x-nav-link>
</ul>
<div class="flex justify-end text-white space-x-4">
@auth
<a href="{{ route('user.index') }}"><strong>{{ auth()->user()->username }}</strong></a>
<x-form method="DELETE" action="{{ route('auth.logout') }}">
<a href="/" onclick="this.closest('form').submit();return false;">{{ __('Logout') }}</a>
</x-form>
@else
<a href="{{ route('auth.login') }}">{{ __('Login') }}</a>
@endauth
</div>
</div>
</nav>
<!-- Navigation ends -->