eventflow / resources /views /components /guest-layout.blade.php
Ezekiel999's picture
Deploy EventFlow to HF Spaces with Docker
10dc6f2 verified
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ $title ?? 'Login' }} — Eventify</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>* { font-family: 'Inter', sans-serif; }</style>
</head>
<body class="bg-slate-950 text-white min-h-screen flex items-center justify-center">
<div class="w-full max-w-md px-6">
<div class="text-center mb-8">
<a href="{{ route('home') }}" class="text-2xl font-bold">🎫 Eventify</a>
</div>
<div class="bg-white/5 border border-white/10 rounded-2xl p-8">
{{ $slot }}
</div>
</div>
</body>
</html>