retrofairie/resources/views/layouts/app.blade.php
2025-02-22 17:55:26 -08:00

12 lines
234 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
@include('layouts.head')
<body>
<main class="max-w-[600px]">
{{ $slot }}
@include('layouts.navigation')
</main>
</body>
</html>