Update layout

Add standard tailwind color classes

Remove welcome page

Add landing page
This commit is contained in:
joeplikestocode
2026-02-17 00:13:18 +01:00
parent c16cabc00e
commit b77c1ba281
12 changed files with 1026 additions and 302 deletions

View File

@@ -1,18 +1,26 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>{{ $title ?? config('app.name') }}</title>
<title>{{ $title ?? config('app.name') }}</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
@livewireStyles
</head>
<body>
<body class="min-h-dvh bg-background text-foreground">
<div class="mx-auto min-h-dvh w-full max-w-[430px] bg-background px-4 pt-4 pb-[calc(env(safe-area-inset-bottom)+1rem)]">
<main class="@auth pb-24 @else pb-6 @endauth">
{{ $slot }}
</main>
@livewireScripts
</body>
@auth
<livewire:layout.navbar />
@endauth
</div>
@livewireScripts
</body>
</html>