add temporary file manager

This commit is contained in:
2026-02-19 19:47:42 +03:00
parent cf635f81dd
commit ad4a3367c3
9 changed files with 256 additions and 0 deletions

View File

@@ -7,6 +7,12 @@
@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>