30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<!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>
|