Files
FilamentLaravel/resources/views/components/layouts/app.blade.php
T
iridium34 af0cf8bed9 - Add CSP headers in guest.blade.php for enhanced security.
- Update Vite config with proper server settings, including CORS configuration for `ddev.site` domains.
- Upgrade dependencies in `package-lock.json`, including versions for Rollup and TailwindCSS packages.
2026-01-21 04:25:01 +01:00

41 lines
1.2 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="shortcut icon" href="{{ asset('favicon.png') }}" type="image/x-icon">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
<!-- Styles -->
@livewireStyles
@fluxAppearance
<title>{{ config('app.name', 'Laravel') }}</title>
</head>
<body class="font-sans antialiased bg-neutral-900">
<x-navbar />
<div class="flex flex-row">
<!--
<x-sidenav />
-->
<div class="w-full">{{ $slot }}</div>
</div>
<x-footer />
@livewireScripts
@fluxScripts
@stack('modals')
</body>
</html>