coolify/resources/views/components/settings/navbar.blade.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

20 lines
656 B
PHP

@props([
'title' => 'Settings',
'subtitle' => 'Instance configuration and maintenance',
])
{{-- Same 1180px shell as the workspace. Title hidden only at xl+ (full desktop). --}}
<div class="mx-auto w-full max-w-[1180px]">
<x-dashboard.navbar section="settings" :title="$title" :subtitle="$subtitle" :titleOnDesktop="false">
@isset($titleActions)
<x-slot:titleActions>
{{ $titleActions }}
</x-slot:titleActions>
@endisset
@isset($actions)
<x-slot:actions>
{{ $actions }}
</x-slot:actions>
@endisset
</x-dashboard.navbar>
</div>