2025-12-12 23:07:04 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_','-',app()->getLocale()) }}">
|
|
|
|
|
<x-head/>
|
|
|
|
|
<body class="bg-blue-600">
|
|
|
|
|
<div class="container mx-auto text-white">
|
|
|
|
|
<x-header/>
|
|
|
|
|
{{ $slot }}
|
|
|
|
|
</div>
|
2025-12-14 13:44:20 -06:00
|
|
|
@livewireScriptConfig(['nonce' => request()->attributes->get('csp-nonce')])
|
2025-12-12 23:07:04 -06:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|