= d63489ea33 refactor: replace flux components with maryUI equivalents and update Blade templates
- Replaced deprecated `flux` components with `maryUI` counterparts (`flux:input` → `x-mary-input`, `flux:button` → `x-mary-button`, etc.).
- Removed unused partials (`settings-heading.blade.php`) and outdated structures from Blade files.
- Adjusted Livewire modal, form, and button implementations for consistency with `maryUI`.
- Streamlined layout and theme styling for improved maintainability and readability.
2026-05-18 09:49:14 +00:00

11 lines
343 B
PHP

<div class="flex items-start max-md:flex-col">
<div class="flex-1 self-stretch pt-6">
<p class="text-xl text-gray-700 mb-2 font-medium">{{ $heading ?? '' }}</p>
<p class="text-sm text-gray-500">{{ $subheading ?? '' }}</p>
<div class="mt-5 w-full max-w-lg">
{{ $slot }}
</div>
</div>
</div>