@php
$dir = GetDirection();
$isDarkMode = array_key_exists('theme', $_COOKIE) ? ($_COOKIE['theme'] === 'dark') : false;
@endphp
@yield('title')
@include('partial/css')
@if(file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
@vite(['resources/css/app.css', 'resources/js/app.js'])
@else
@endif
@yield('content')
@include('partial.js')