Protect recordings per user, seed a demo login on container start, and bind-mount the app with Vite HMR for local Compose development.
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
<head>
|
|
@include('partials.head')
|
|
<style>[x-cloak]{display:none!important}</style>
|
|
</head>
|
|
<body class="min-h-screen bg-stone-100 text-stone-900 antialiased dark:bg-zinc-900 dark:text-zinc-100">
|
|
<x-disk-space-bar />
|
|
|
|
<flux:header class="border-b border-stone-200 bg-white dark:border-zinc-700 dark:bg-zinc-800">
|
|
<div class="mx-auto flex w-full max-w-5xl items-center gap-4 px-4 sm:px-6">
|
|
<a href="{{ route('recordings.index') }}" class="text-lg font-semibold tracking-tight text-teal-800 dark:text-teal-300">
|
|
AndyTranscribe
|
|
</a>
|
|
<flux:spacer />
|
|
<x-appearance-toggle />
|
|
@auth
|
|
<x-desktop-user-menu />
|
|
@endauth
|
|
</div>
|
|
</flux:header>
|
|
|
|
<main class="mx-auto max-w-5xl px-4 py-8 sm:px-6">
|
|
{{ $slot }}
|
|
</main>
|
|
|
|
@fluxScripts
|
|
</body>
|
|
</html>
|