akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -0,0 +1,30 @@
<div @class([
'relative lg:h-60',
$backgroundColor,
'rounded-lg flex flex-col lg:flex-row items-center justify-between mt-8 mb-12',
])
>
<div class="hidden lg:block px-4">
<img src="{{ $image }}" class="w-60 h-60 object-contain mt-10 m-auto" />
</div>
<div @class([
'lg:w-3/5',
$textColor,
'text-right py-4 lg:py-0 px-4 space-y-2',
])
>
<p class="mb-5">
{!! $description !!}
</p>
@if (! empty($button) && $button->isNotEmpty())
{!! $button !!}
@else
<a href="{!! $url !!}" class="border-b border-transparent transition-all hover:border-white">
{{ $textAction }}
</a>
@endif
</div>
</div>