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

38 lines
1.3 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>
@vite(['resources/css/app.css', 'resources/js/auth.js'])
@livewireStyles
</head>
<body class="min-h-screen bg-[--color-bg-base] flex items-center justify-center px-4 py-12">
<div class="w-full max-w-[420px]">
{{-- Logo --}}
<div class="flex items-center justify-center gap-2.5 mb-8">
<div class="w-9 h-9 rounded-xl bg-[--color-accent] flex items-center justify-center shadow-sm">
<x-heroicon-o-academic-cap class="w-5 h-5 text-white" />
</div>
<span class="font-bold text-xl tracking-tight text-[--color-text-primary]">Lernschiff</span>
</div>
{{-- Card --}}
<div class="bg-white rounded-2xl border border-[--color-border-subtle] shadow-sm px-8 py-8">
{{ $slot }}
</div>
{{-- Footer --}}
<p class="text-center text-xs text-[--color-text-muted] mt-6">
© {{ date('Y') }} Lernschiff · DACH · Alle Rechte vorbehalten
</p>
</div>
@livewireScripts
</body>
</html>