Files
hstream/resources/views/admin/layout.blade.php
2025-09-18 15:31:27 +02:00

17 lines
582 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
@include('partials.head')
<body class="font-sans antialiased">
<div class="flex flex-col min-h-screen bg-gray-100 dark:bg-neutral-900">
@include('layouts.navigation')
@include('user.partials.background')
<div class="mt-[65px]">
@include('admin.partials.sidenav')
<div class="pl-64">
@yield('content')
</div>
</div>
</div>
</body>
</html>