update home and about

This commit is contained in:
2025-05-21 17:50:46 +03:00
parent 0be19f8c9b
commit 34641b9870
6 changed files with 37 additions and 102 deletions

View File

@@ -0,0 +1,17 @@
{% set title = title | default(value="Feature") %}
{% set subtitle = subtitle | default(value="") %}
{% set description = description | default(value="") %}
<div class="fade-in py-12">
<div class="relative isolate px-4 lg:px-8">
<div class="mx-auto max-w-4xl">
<div class="text-left lg:text-center">
<h2 class="fade-in text-balance lg:text-5xl text-4xl font-medium tracking-tight text-black">{{ title }}</h2>
<h3 class="fade-in text-balance lg:text-3xl text-2xl font-normal tracking-tight text-black">{{ subtitle }}</h3>
<p class="mt-8 lg:text-lg font-light text-black sm:text-xl/8">{{ description }}</p>
</div>
</div>
</div>
</div>