parfum/resources/views/components/layouts/app.blade.php
2025-09-13 11:47:40 +07:00

26 lines
823 B
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>{{ $title }} | {{ config('app.name') }}</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@fluxAppearance
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
</head>
<body class="min-h-screen bg-white dark:bg-zinc-800">
@include('components.partials.studio._sidebar')
@include('components.partials.studio._header')
<flux:toast position="top end" class="ps-6" />
{{ $slot }}
@fluxScripts
</body>
</html>