25 lines
700 B
PHP
25 lines
700 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
|
|
<head>
|
|
@include('partials.head')
|
|
@include('partials.theme-init-script')
|
|
</head>
|
|
|
|
<body
|
|
class="min-h-screen items-center justify-center bg-gradient-to-br from-blue-50 via-white to-purple-50 dark:from-zinc-900 dark:via-zinc-900 dark:to-zinc-800 px-4 py-12">
|
|
<div class="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
|
|
|
|
{{ $slot }}
|
|
|
|
<div class="flex justify-center mt-4">
|
|
<x-theme-toggle />
|
|
</div>
|
|
|
|
</div>
|
|
@livewireScripts
|
|
@fluxScripts
|
|
@include('partials.theme-toggle-script')
|
|
</body>
|
|
|
|
</html>
|