338c190ae8
Enhance the navigation with a modern floating glass design, new Browse and Community dropdown links, and improved theme/blur toggles that now handle multiple instances. Update dropdown components with rounded styling and support for wider widths, refine nav-link active states, and add navigation feature tests.
17 lines
577 B
PHP
17 lines
577 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('partials.background')
|
|
<div class="mt-[80px]">
|
|
@include('admin.partials.sidenav')
|
|
<div class="pl-64">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|