initial commit
This commit is contained in:
commit
1e1aa7d461
215 changed files with 35140 additions and 0 deletions
5
resources/views/partials/footer.blade.php
Normal file
5
resources/views/partials/footer.blade.php
Normal 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 © 2021 - <x-link href="https://www.shufflingpixels.com" target="_blank">shufflingpixels.com</x-link>
|
||||
</p>
|
||||
</footer>
|
||||
27
resources/views/partials/navigation.blade.php
Normal file
27
resources/views/partials/navigation.blade.php
Normal 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 -->
|
||||
0
resources/views/partials/page-header.blade.php
Normal file
0
resources/views/partials/page-header.blade.php
Normal file
Reference in a new issue