= 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

10 lines
210 B
PHP

@props([
'title',
'description',
])
<div class="flex w-full flex-col text-center">
<p class="text-2xl font-bold">{{ $title }}</p>
<p class="text-sm text-gray-500">{{ $description }}</p>
</div>