@props([ 'icon' => null, 'title', 'description' => null, 'actionLabel' => null, 'actionHref' => null, 'actionIcon' => null, ])
merge(['class' => 'glass-card rounded-2xl px-6 py-16 text-center']) }}> {{-- Icon --}} @if($icon)
{!! $icon !!}
@endif {{-- Title --}}

{{ $title }}

{{-- Description --}} @if($description)

{{ $description }}

@endif {{-- Action Button --}} @if($actionLabel && $actionHref) @if($actionIcon) {!! $actionIcon !!} @else @endif {{ $actionLabel }} @endif {{-- Custom slot for additional content --}} @if($slot->isNotEmpty())
{{ $slot }}
@endif