]> git.localhorst.tv Git - alttp.git/blob - resources/views/layouts/guest.blade.php
add discord auth
[alttp.git] / resources / views / layouts / guest.blade.php
1 <!DOCTYPE html>
2 <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
3     <head>
4         <meta charset="utf-8">
5         <meta name="viewport" content="width=device-width, initial-scale=1">
6         <meta name="csrf-token" content="{{ csrf_token() }}">
7
8         <title>{{ config('app.name', 'Laravel') }}</title>
9
10         <!-- Fonts -->
11         <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
12
13         <!-- Styles -->
14         <link rel="stylesheet" href="{{ asset('css/app.css') }}">
15
16         <!-- Scripts -->
17         <script src="{{ asset('js/app.js') }}" defer></script>
18     </head>
19     <body>
20         <div class="font-sans text-gray-900 antialiased">
21             {{ $slot }}
22         </div>
23     </body>
24 </html>