update download page

This commit is contained in:
2025-05-21 18:56:13 +03:00
parent d4af55f6ec
commit 3ea0f6c544
3 changed files with 148 additions and 78 deletions

View File

@@ -6,15 +6,15 @@
{% set hover_color = hover_color | default(value="hover:bg-gray-50") %}
<div class="relative {{ bg_color }} {{ hover_color }} shadow rounded-lg p-4 transition-all duration-300">
<div class="relative shadow rounded-lg p-4 transition-all duration-300">
{% if icon %}
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gray-200 text-white mb-4">
<div class="flex items-center justify-center h-12 w-12 rounded-md mb-4">
<img src="{{ icon | safe }}" class="">
</div>
{% endif %}
<h3 class="text-md font-medium">{{ title }}</h3>
<h3 class="text-lg font-medium">{{ title }}</h3>
{% if description %}
<p class="my-2 font-extralight">{{ description }}</p>
<p class="my-2 text-base font-light">{{ description }}</p>
{% endif %}
{% if link %}
<a href="{{ link }}" class="text-sm font-semibold text-black hover:text-gray-700">{{ link_name }} <span aria-hidden="true"></span></a>