21-11-2025
This commit is contained in:
parent
fa2ebd457d
commit
07959c0ba2
113 changed files with 4730 additions and 898 deletions
25
resources/views/components/layouts/guest.blade.php
Normal file
25
resources/views/components/layouts/guest.blade.php
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue