27 lines
882 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
@foreach ($tips as $item)
<div class="fixed container top-36 xl:top-28 hidden lg:block">
<div @class([
'relative leading-4 z-10',
'ltr:text-right rtl:text-left' => $item->align == 'right',
'ltr::text-left rtl:text-right' => $item->align == 'left',
])
>
<h2 class="font-bold mb-1">
{{ $item->title }}
</h2>
<p class="text-sm mb-2">
{!! $item->description !!}
</p>
<a href="{{ $item->action }}" class="font-light text-sm" target="_blank">
<x-text.hover text="{{ $item->learn_more }}" />
2022-06-01 10:15:55 +03:00
</a>
</div>
<div class="absolute ltr:right-0 rtl:left-0 -top-4">
<img src="{{ $item->thumb }}" alt="{{ $item->title }}" />
</div>
</div>
@endforeach