17 lines
503 B
PHP
17 lines
503 B
PHP
<!DOCTYPE html>
|
|
<html lang="de" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ config('app.name', 'Lernschiff') }}</title>
|
|
@vite(['resources/css/app.css', 'resources/js/auth.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="h-full bg-[--color-bg-base] font-[--font-display]">
|
|
<div class="min-h-screen flex items-center justify-center">
|
|
{{ $slot }}
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|