Refactor by using app layout

This commit is contained in:
2026-05-22 22:34:03 +02:00
parent 6340302ac6
commit 4928733383
12 changed files with 196 additions and 325 deletions

View File

@@ -1,17 +1,4 @@
<!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')
<!-- Page Content -->
<main>
@include('partials.background')
@livewire('live-search')
</main>
@include('layouts.footer')
</div>
</body>
</html>
<x-app-layout>
@include('partials.background')
@livewire('live-search')
</x-app-layout>