73 lines
4.0 KiB
PHP
73 lines
4.0 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'])
|
|
<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>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900">
|
|
<!-- Header -->
|
|
<header class="bg-white shadow-md sticky top-0 z-50">
|
|
<div class="container mx-auto px-4 py-4 flex items-center justify-between">
|
|
<div class="flex items-center space-x-2">
|
|
<a href="/" class="text-2xl font-bold text-gray-900">Fotospiel</a>
|
|
<svg class="w-6 h-6 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"></path>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13a3 3 0 11-6 0 3 3 0 016 0z"></path>
|
|
</svg>
|
|
</div>
|
|
<nav class="hidden md:flex space-x-6 items-center">
|
|
<a href="#how-it-works" class="text-gray-600 hover:text-gray-900">How it works</a>
|
|
<a href="#features" class="text-gray-600 hover:text-gray-900">Features</a>
|
|
<div class="relative group">
|
|
<button class="text-gray-600 hover:text-gray-900">Occasions</button>
|
|
<div class="absolute top-full left-0 mt-2 bg-white border rounded shadow-lg hidden group-hover:block">
|
|
<a href="/occasions/weddings" class="block px-4 py-2 text-gray-600 hover:text-gray-900">Weddings</a>
|
|
<a href="/occasions/birthdays" class="block px-4 py-2 text-gray-600 hover:text-gray-900">Birthdays</a>
|
|
<a href="/occasions/corporate-events" class="block px-4 py-2 text-gray-600 hover:text-gray-900">Corporate Events</a>
|
|
<a href="/occasions/family-celebrations" class="block px-4 py-2 text-gray-600 hover:text-gray-900">Family Celebrations</a>
|
|
</div>
|
|
</div>
|
|
<a href="/blog" class="text-gray-600 hover:text-gray-900">Blog</a>
|
|
<a href="/packages" class="text-gray-600 hover:text-gray-900">Packages</a>
|
|
<a href="#contact" class="text-gray-600 hover:text-gray-900">Contact</a>
|
|
<a href="/packages" class="bg-[#FFB6C1] text-white px-6 py-2 rounded-full font-semibold hover:bg-[#FF69B4] transition">Packages entdecken</a>
|
|
</nav>
|
|
<!-- Mobile Menu Placeholder (Hamburger) -->
|
|
<button class="md:hidden text-gray-600">☰</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="bg-gray-800 text-white py-8 px-4">
|
|
<div class="container mx-auto text-center">
|
|
<p>© 2025 Fotospiel GmbH. Alle Rechte vorbehalten.</p>
|
|
<div class="mt-4 space-x-4">
|
|
<a href="/impressum" class="hover:text-[#FFB6C1]">Impressum</a>
|
|
<a href="/datenschutz" class="hover:text-[#FFB6C1]">Datenschutz</a>
|
|
<a href="#contact" class="hover:text-[#FFB6C1]">Kontakt</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html> |