17 lines
698 B
HTML
17 lines
698 B
HTML
{% 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> |