18 lines
527 B
PHP
18 lines
527 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">
|
|
<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>
|