@if(!empty($showWelcomeSpacer)) @endif @foreach(($variants ?? []) as $variant) @if($variant === 'tags') @elseif($variant === 'cta') @else @php $showSubtitle = in_array($variant, ['collections', 'groups', 'news'], true); $gridClass = match ($variant) { 'creators' => 'grid-cols-2 sm:grid-cols-3 lg:grid-cols-6', 'news' => 'grid-cols-1', 'categories' => 'grid-cols-2 lg:grid-cols-4', 'collections' => 'grid-cols-1 lg:grid-cols-2 xl:grid-cols-3', 'groups' => 'grid-cols-1 sm:grid-cols-2 xl:grid-cols-4', default => 'grid-cols-2 xl:grid-cols-4', }; $cardClass = match ($variant) { 'categories' => 'h-28 rounded-2xl', 'news' => 'h-24 rounded-2xl', 'creators' => 'h-64 rounded-2xl', 'collections', 'groups' => 'h-80 rounded-[28px]', default => 'aspect-[4/3] rounded-2xl', }; $cardCount = match ($variant) { 'creators' => 6, 'news' => 4, default => 4, }; @endphp @endif @endforeach