lernschiff/resources/views/layouts/guest.blade.php

42 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="de" class="h-full">
<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', 'Lernschiff') }}</title>
<link rel="preload" href="{{ asset('fonts/PlusJakartaSans-VariableFont_wght.woff2') }}" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="{{ asset('fonts/JetBrainsMono-Regular.woff2') }}" as="font" type="font/woff2" crossorigin>
<link rel="icon" type="image/svg+xml" href="{{ asset('logo/favicon.svg') }}">
<link rel="icon" type="image/x-icon" href="{{ asset('logo/favicon.ico') }}">
<link rel="apple-touch-icon" href="{{ asset('icons/apple-touch-icon.png') }}">
<link rel="manifest" href="{{ asset('manifest.webmanifest') }}">
<meta name="theme-color" content="#f5f3ee">
@vite(['resources/css/app.css', 'resources/js/auth.js'])
@livewireStyles
</head>
<body class="min-h-screen bg-bg-base flex items-center justify-center px-4 py-12">
<div class="w-full max-w-[420px]">
{{-- Brand --}}
<div class="flex items-center justify-center mb-8">
<x-layout.brand variant="wordmark" />
</div>
{{-- Card --}}
<div class="bg-white rounded-2xl border border-border-subtle shadow-sm px-8 py-8">
{{ $slot }}
</div>
{{-- Footer --}}
<p class="text-center text-xs text-text-muted mt-6">
© {{ date('Y') }} Lernschiff · DACH · Alle Rechte vorbehalten
</p>
</div>
@livewireScripts
</body>
</html>