2025-12-12 23:07:04 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_','-',app()->getLocale()) }}">
|
|
|
|
|
<x-head/>
|
2025-12-31 00:11:09 -06:00
|
|
|
<body class="bg-gradient-to-br from-blue-900 via-blue-700 to-indigo-900 min-h-screen">
|
2025-12-12 23:07:04 -06:00
|
|
|
<div class="container mx-auto text-white">
|
|
|
|
|
<x-header/>
|
|
|
|
|
{{ $slot }}
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|