hosp_2025/resources/views/layouts/app.blade.php

30 lines
839 B
PHP
Raw Normal View History

2025-12-11 15:10:26 -04:00
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
@vite(['resources/css/app.css', 'resources/js/app.js'])
@filamentStyles()
</head>
<body>
@livewire('formkit::header-nav')
<div class="max-w-screen-xl px-4 mx-auto lg:px-12 w-full">
{{ $slot }}
</div>
</body>
@filamentScripts()
</html>