|
13 | 13 | <!-- Styles -->
|
14 | 14 | <link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
15 | 15 | </head>
|
16 |
| -<body class="bg-teal-lightest font-sans font-normal antialiased"> |
17 |
| - <div class="flex flex-col"> |
18 |
| - @if(Route::has('login')) |
19 |
| - <div class="absolute pin-t pin-r mt-4 mr-4"> |
20 |
| - @auth |
21 |
| - <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Home') }}</a> |
22 |
| - @else |
23 |
| - <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase pr-6">{{ __('Login') }}</a> |
24 |
| - <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Register') }}</a> |
25 |
| - @endauth |
26 |
| - </div> |
27 |
| - @endif |
| 16 | +<body class="bg-grey-lightest h-screen antialiased"> |
| 17 | +<div class="flex flex-col"> |
| 18 | + @if(Route::has('login')) |
| 19 | + <div class="absolute pin-t pin-r mt-4 mr-4"> |
| 20 | + @auth |
| 21 | + <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Home') }}</a> |
| 22 | + @else |
| 23 | + <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase pr-6">{{ __('Login') }}</a> |
| 24 | + <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Register') }}</a> |
| 25 | + @endauth |
| 26 | + </div> |
| 27 | + @endif |
28 | 28 |
|
29 |
| - <div class="min-h-screen flex items-center justify-center"> |
30 |
| - <div class="flex flex-col justify-around h-full"> |
31 |
| - <div> |
32 |
| - <h1 class="text-grey-darker text-center font-thin tracking-wide text-5xl mb-6"> |
33 |
| - {{ config('app.name', 'Laravel') }} |
34 |
| - </h1> |
35 |
| - <ul class="list-reset"> |
36 |
| - <li class="inline pr-8"> |
37 |
| - <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Documentation">Documentation</a> |
38 |
| - </li> |
39 |
| - <li class="inline pr-8"> |
40 |
| - <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Laracasts">Laracasts</a> |
41 |
| - </li> |
42 |
| - <li class="inline pr-8"> |
43 |
| - <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="News">News</a> |
44 |
| - </li> |
45 |
| - <li class="inline pr-8"> |
46 |
| - <a href="https://nova.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Nova">Nova</a> |
47 |
| - </li> |
48 |
| - <li class="inline pr-8"> |
49 |
| - <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Forge">Forge</a> |
50 |
| - </li> |
51 |
| - <li class="inline pr-8"> |
52 |
| - <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="GitHub">GitHub</a> |
53 |
| - </li> |
54 |
| - </ul> |
55 |
| - </div> |
| 29 | + <div class="min-h-screen flex items-center justify-center"> |
| 30 | + <div class="flex flex-col justify-around h-full"> |
| 31 | + <div> |
| 32 | + <h1 class="text-grey-darker text-center font-thin tracking-wide text-5xl mb-6"> |
| 33 | + {{ config('app.name', 'Laravel') }} |
| 34 | + </h1> |
| 35 | + <ul class="list-reset"> |
| 36 | + <li class="inline pr-8"> |
| 37 | + <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Documentation">Documentation</a> |
| 38 | + </li> |
| 39 | + <li class="inline pr-8"> |
| 40 | + <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Laracasts">Laracasts</a> |
| 41 | + </li> |
| 42 | + <li class="inline pr-8"> |
| 43 | + <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="News">News</a> |
| 44 | + </li> |
| 45 | + <li class="inline pr-8"> |
| 46 | + <a href="https://nova.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Nova">Nova</a> |
| 47 | + </li> |
| 48 | + <li class="inline pr-8"> |
| 49 | + <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Forge">Forge</a> |
| 50 | + </li> |
| 51 | + <li class="inline pr-8"> |
| 52 | + <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="GitHub">GitHub</a> |
| 53 | + </li> |
| 54 | + </ul> |
56 | 55 | </div>
|
57 | 56 | </div>
|
58 | 57 | </div>
|
| 58 | +</div> |
59 | 59 | </body>
|
60 | 60 | </html>
|
0 commit comments