first&last

This commit is contained in:
sbb45
2026-03-20 15:47:17 +05:00
commit d6441abdd2
230 changed files with 20367 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $title ?? 'Computer Service' }}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
@fluxAppearance
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
<body class="bg-slate-100 text-slate-900 antialiased">
<div class="min-h-screen flex items-center justify-center p-6">
<div class="w-full max-w-md rounded-2xl bg-white shadow-xl border border-slate-200 p-8">
<div class="mb-6 text-center">
<h1 class="text-2xl font-semibold tracking-tight">ServiceAir</h1>
<p class="text-sm text-slate-500 mt-1">Сервисная платформа поддержки</p>
</div>
{{ $slot }}
</div>
</div>
@livewireScripts
@fluxScripts
</body>
</html>