31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Caveat', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="antialiased">
|
|
<div class="relative flex items-top justify-center min-h-screen bg-gradient-to-r from-green-400 to-blue-500 sm:items-center py-4 sm:pt-0">
|
|
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8 font-bold text-8xl text-white">
|
|
Lets Go !
|
|
</div>
|
|
</div>
|
|
<script src="{{ asset('js/app.js') }}" defer></script>
|
|
</body>
|
|
</html>
|