Files
hstream/resources/views/layouts/guest.blade.php
2026-01-07 17:03:57 +01:00

18 lines
515 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
@include('partials.head')
<body class="font-sans antialiased">
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-neutral-900">
<div>
<a href="/">
<x-application-logo class="w-24 h-24 fill-current text-gray-500" />
</a>
</div>
{{ $slot }}
</div>
</body>
</html>