28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
|
|
<head>
|
|
@include('partials.head')
|
|
</head>
|
|
|
|
<body class="min-h-screen bg-white antialiased dark:bg-linear-to-b dark:from-neutral-950 dark:to-neutral-900">
|
|
<div class="bg-background flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
|
|
<div class="flex w-full flex-col gap-2">
|
|
<div class="flex flex-col gap-6">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
<footer class="bg-white rounded-lg shadow-sm m-4 dark:bg-gray-800">
|
|
<div class="w-full mx-auto max-w-screen-xl p-4 md:flex md:items-center md:justify-between">
|
|
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">Source code: <a
|
|
href="https://gitea.lolispace.moe/weeb/lolispace-applications" class="hover:underline">Gitea</a>.
|
|
Made with ❤️
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
@fluxScripts
|
|
</body>
|
|
|
|
</html>
|