Files
2026-02-19 19:47:42 +03:00

24 lines
854 B
PHP

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poker Planning</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<header class="border-b bg-white">
<div class="container mx-auto px-4 py-3 max-w-2xl flex justify-between items-center">
<a href="/" class="font-semibold text-gray-800">Poker Planning</a>
<a href="{{ route('files.index') }}" class="text-sm text-blue-600 hover:underline">Файлы</a>
</div>
</header>
<main class="container mx-auto px-4 py-8 max-w-2xl flex-grow">
@yield('content')
</main>
<footer class="text-center text-gray-500 text-sm py-4 border-t mt-auto">
Poker Planning © {{ date('Y') }}
</footer>
</body>
</html>