34 lines
1.1 KiB
PHP
34 lines
1.1 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.0">
|
|
<title>Zenithar</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=Domine:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
rel="stylesheet">
|
|
<tallstackui:script/>
|
|
@livewireStyles
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
|
|
<body class="flex flex-col min-h-screen">
|
|
<x-dialog/>
|
|
<x-toast/>
|
|
<x-flash/>
|
|
|
|
<x-navbar/>
|
|
<div class="flex-1 bg-secondary-50 overflow-x-auto">
|
|
<main class="container mx-auto px-4 py-8">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
|
|
</html>
|