Files
my-website/resources/views/layout.blade.php
Daniel Legt 4ac0eaa27a Started implementing Navbar v2
- Removed old navbar from pages
+ Added navbar_v2 in pages
+ Added pork navbar v2
+ Added beef navbar v2

TODO: Implement navbar_v2 for poultry
TODO: Implement navbar_v2 for lamb
TODO: Completely delete old navbar and replace with new navbar
2024-02-19 17:40:50 +02:00

36 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
@vite("resources/css/app.css")
</head>
<body class="flex flex-col min-h-screen">
@include('partials.navbar')
<!-- Main Content Wrapper -->
<main class="relative min-h-screen flex flex-col justify-center bg-white overflow-hidden">
<!--<div class="flex flex-1 min-h-screen">-->
<div class="flex-grow">
<div class="grid grid-cols-6 min-h-screen">
<!-- Sidebar -->
@include('partials.sidebar_v2')
<!-- Main content area -->
@if ( empty($sidebarContent) )
<div class="col-span-6">
@else
<div class="col-span-5">
@endif
@yield('content')
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="mt-auto">
@include('partials.footer')
</footer>
</body>
</html>