TKK_E32222868/resources/views/components/layouts/front.blade.php

15 lines
286 B
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>{{ $title ?? 'Landing Page' }}</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
<body class="bg-gray-100">
{{ $slot }}
@livewireScripts
</body>
</html>