clupilot/app/resources/views/placeholder.blade.php

35 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ $title ?? 'Coming soon' }} · {{ config('app.name', 'CluPilot') }}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
<body class="clu-bg-aurora">
<div class="clu-app-grid">
<x-clu.sidebar :active="request()->route()?->getName()" />
<main class="flex flex-col min-w-0" style="padding:14px 14px 0;">
<div class="clu-topbar">
<div>
<h1>{{ $title ?? 'Coming soon' }}</h1>
<div class="crumb">Diese Seite wird gerade gebaut.</div>
</div>
</div>
<div class="clu-card">
<div class="clu-card-body" style="padding:60px;text-align:center;">
<h2 class="text-[18px] font-semibold mb-2">{{ $title ?? 'Diese Seite' }} folgt in Kürze</h2>
<p class="text-(--color-muted)">Volt-Komponente noch nicht gebaut. <a href="{{ route('dashboard') }}" wire:navigate>Zurück zum Dashboard</a></p>
</div>
</div>
</main>
</div>
@livewireScripts
</body>
</html>