19 lines
820 B
PHP
19 lines
820 B
PHP
<!-- Article Card Component -->
|
|
<div class="bg-white rounded-[20px] p-8 shadow-lg flex flex-col justify-between h-full">
|
|
<div class="flex flex-col gap-6">
|
|
<div class="flex items-center justify-between">
|
|
<div class="w-4 h-4 {{ $colorClass }} rounded-full"></div>
|
|
</div>
|
|
<h3 class="text-xl md:text-2xl font-semibold text-black">
|
|
{{ $title }}
|
|
</h3>
|
|
</div>
|
|
<div class="flex items-end justify-between gap-4 mt-6">
|
|
<p class="text-[#878C91] text-sm leading-relaxed flex-1">
|
|
{{ $description }}
|
|
</p>
|
|
<a href="{{ $url ?? '#' }}" class="btn-minimal btn-outline border border-black px-6 py-3 rounded-full flex items-center justify-center">
|
|
<i class="bx bx-right-arrow-alt text-xl"></i>
|
|
</a>
|
|
</div>
|
|
</div> |