15 lines
454 B
PHP
15 lines
454 B
PHP
@props([
|
|
'cta' => true,
|
|
])
|
|
|
|
<div {{ $attributes->merge(['class' => 'flex justify-between items-end gap-6 animate-pulse']) }}>
|
|
<div class="flex-1 max-w-xl flex flex-col gap-3">
|
|
<div class="h-2 bg-line rounded w-20"></div>
|
|
<div class="h-8 bg-line rounded w-3/5"></div>
|
|
<div class="h-3 bg-line rounded w-4/5"></div>
|
|
</div>
|
|
@if($cta)
|
|
<div class="h-10 w-40 bg-line rounded-lg shrink-0"></div>
|
|
@endif
|
|
</div>
|