lernschiff/resources/views/components/layouts/app.blade.php

22 lines
687 B
PHP

<!DOCTYPE html>
<html lang="de" class="h-full">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>{{ config('app.name', 'Lernschiff') }}</title>
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#f0eee9" />
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
<body class="h-full bg-[--color-bg-base] font-[--font-display]">
<livewire:layout.navigation />
<main class="py-8">
{{ $slot }}
</main>
@livewireScripts
@stack('scripts')
</body>
</html>