31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ $title ?? 'Dashboard' }} · {{ config('app.name', 'CluPilot') }}</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=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="clu-bg-aurora">
|
|
<div class="clu-app-grid">
|
|
|
|
{{-- ───── Sidebar ───── --}}
|
|
<x-clu.sidebar :active="$active ?? request()->route()?->getName()" />
|
|
|
|
{{-- ───── Main ───── --}}
|
|
<main class="flex flex-col min-w-0" style="padding:14px 14px 0;">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
|
|
@livewireScripts
|
|
@stack('scripts')
|
|
@livewire('wire-elements-modal')
|
|
</body>
|
|
</html>
|