30 lines
1.2 KiB
PHP
30 lines
1.2 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', 'Laravel') }}</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="font-sans antialiased" style="background-color:#0a0a0f;color:#f0f0f5;">
|
|
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0">
|
|
<div>
|
|
<a href="/" wire:navigate>
|
|
<span style="font-size:1.5rem;font-weight:700;color:#4f8ef7;">CluPilot</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="w-full sm:max-w-md mt-6 px-8 py-8 overflow-hidden sm:rounded-xl"
|
|
style="background-color:#16161e;border:1px solid rgba(255,255,255,0.06);">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|