1
0
Files
Freezer-web-app/resources/views/components/layout.blade.php
2025-03-31 17:22:29 +02:00

16 lines
376 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
@vite('resources/css/app.css')
<title>Document</title>
</head>
<body>
<div class="p-4">
<x-navigation></x-navigation>
{{ $slot }}
</div>
</body>
</html>