Files
hstream/resources/views/layouts/guest.blade.php
2026-05-23 14:00:11 +02: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-950">
<div>
<a href="/">
<x-application-logo class="w-24 h-24 fill-current text-gray-500" />
</a>
</div>
{{ $slot }}
</div>
</body>
</html>