www_zola_template/templates/shortcodes/features_card.html
2025-08-05 16:03:49 +03:00

16 lines
391 B
HTML

{% set title = title | default(value="") %}
{% set description = description | default(value="") %}
<div class="flex gap-x-4 rounded-xl bg-white/5 p-6 ring-1 ring-inset ring-white/10">
<div class="text-base leading-7">
<h4 class="font-semibold text-white">{{ title }}</h4>
<p class="mt-2 text-lg text-gray-300">{{ description }}
</p>
</div>
</div>