- 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.
10 lines
210 B
PHP
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>
|