48 lines
2.0 KiB
PHP
48 lines
2.0 KiB
PHP
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ $title ?? config('app.name', 'Fox') }}</title>
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="min-h-screen">
|
|
<div class="max-w-5xl mx-auto px-4 py-6">
|
|
<header class="flex items-center justify-between mb-6">
|
|
<a href="/" class="flex items-center gap-3 group" wire:navigate>
|
|
<div class="w-10 h-10 rounded-xl bg-primary/20 border border-primary/40 flex items-center justify-center text-primary text-lg font-bold">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3l1.5 4.5h4.5l-3.6 2.7 1.4 4.5L12 12l-3.8 2.7 1.4-4.5L6 7.5h4.5z"/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<div class="font-semibold text-white tracking-tight">Fox</div>
|
|
<div class="text-xs text-white/40 -mt-0.5">proaktiver Assistent</div>
|
|
</div>
|
|
</a>
|
|
|
|
<nav class="flex items-center gap-1 text-sm">
|
|
<a href="/" wire:navigate class="px-3 py-2 rounded-lg hover:bg-white/5 text-white/70 hover:text-white transition">
|
|
HUD
|
|
</a>
|
|
<a href="/chat" wire:navigate class="px-3 py-2 rounded-lg hover:bg-white/5 text-white/70 hover:text-white transition">
|
|
Chat
|
|
</a>
|
|
<a href="/goals" wire:navigate class="px-3 py-2 rounded-lg hover:bg-white/5 text-white/70 hover:text-white transition">
|
|
Ziele
|
|
</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="h-[calc(100vh-9rem)]">
|
|
{{ $slot ?? '' }}
|
|
</main>
|
|
</div>
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|