34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>@yield('title', 'Fotospiel - Event-Fotos einfach und sicher mit QR-Codes')</title>
|
|
<meta name="description" content="Sammle Gastfotos für Events mit QR-Codes und unserer PWA-Plattform. Für Hochzeiten, Firmenevents und mehr. Kostenloser Einstieg.">
|
|
<link rel="icon" href="{{ asset('logo.svg') }}" type="image/svg+xml">
|
|
@vite(['resources/css/app.css', 'resources/js/app.tsx'])
|
|
<style>
|
|
@keyframes aurora {
|
|
0%, 100% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
}
|
|
.bg-aurora {
|
|
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
|
|
background-size: 400% 400%;
|
|
animation: aurora 15s ease infinite;
|
|
}
|
|
</style>
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900">
|
|
@include('partials.header')
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
|
|
@include('partials.footer')
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html> |