17 lines
549 B
HTML
17 lines
549 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 my-4">{{ title }}</h2>
|
|
<h3 class="fade-in">{{ subtitle }}</h3>
|
|
<p class="mt-8 lg:text-lg font-light sm:text-xl/8">{{ description }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |