Replaces maryUI and daisyUI with nonameweb/livewire-material: the Vibrant indigo scheme, a system/light/dark theme under sealshare-theme, one top app bar with the account menu, the upload drop zone and link-ready moments, M3 fields, dialogs instead of wire:confirm, snackbars instead of flashed messages, a sortable admin table, and the starter-kit cleanup. Docker builds assets after Composer; CI drops the Flux step. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
16 lines
404 B
PHP
16 lines
404 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.head')
|
|
</head>
|
|
<body class="min-h-dvh bg-surface font-sans text-on-surface antialiased">
|
|
@include('partials.app-bar')
|
|
|
|
<main class="mx-auto w-full max-w-5xl px-4 pt-4 pb-16 sm:px-6">
|
|
{{ $slot }}
|
|
</main>
|
|
|
|
<x-toast />
|
|
</body>
|
|
</html>
|