- Add centered, card-based layout with clean design - Implement 3-step progress indicator component - Add proper dark/light mode support following Coolify design system - Implement Livewire URL state persistence for browser navigation - Separate private key textareas for "Generate" vs "Add your own" modes - Consistent checkpoint styling across all onboarding phases - Enhanced typography with prominent titles (semibold, white in dark mode) - Fixed state restoration on page refresh and browser back/forward navigation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
167 B
PHP
7 lines
167 B
PHP
@extends('layouts.base')
|
|
@section('body')
|
|
<main class="min-h-screen flex items-center justify-center p-4">
|
|
{{ $slot }}
|
|
</main>
|
|
@parent
|
|
@endsection
|