add output
This commit is contained in:
@@ -1,21 +1,29 @@
|
||||
<div class="fade-in">
|
||||
<div class="relative isolate px-6 pt-14 lg:px-8">
|
||||
<div class="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56">
|
||||
<div class="hidden sm:mb-8 sm:flex sm:justify-center">
|
||||
<div class="relative rounded-full px-3 py-1 text-sm/6 text-gray-300 ring-1 ring-gray-700 hover:ring-gray-500">
|
||||
{{ announcement | safe }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<p class="text-base/7 font-light tracking-wide">{{ subheader }}</p>
|
||||
<h1 class="lg:text-6xl text-4xl font-semibold tracking-tight text-balance">{{ title }}</h1>
|
||||
<h2 class="fade-in text-balance lg:text-5xl text-4xl font-normal tracking-tight">{{ subtitle }}</h2>
|
||||
<p class="mt-8 lg:text-lg font-light text-gray-50 sm:text-xl/8">{{ description }}</p>
|
||||
<div class="mt-10 flex items-center justify-center gap-x-6">
|
||||
<a href="{{ button1_link }}" class="rounded-2xl bg-white px-3.5 py-2.5 text-sm font-semibold text-black shadow-xs hover:bg-gray-200 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-200">{{ button1_text }}</a>
|
||||
<a href="{{ button2_link }}" class="text-sm/6 font-semibold hover:text-gray-300">{{ button2_text }} <span aria-hidden="true">→</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center justify-center w-full bg-white">
|
||||
<div class="relative isolate px-4 px-6 lg:px-8 w-full lg:max-w-7xl mx-auto">
|
||||
<div class="mx-auto w-full py-24 lg:py-32">
|
||||
<!-- Subheader -->
|
||||
<p class="text-base/7 font-light text-center text-gray-500 tracking-wide">
|
||||
{{ subheader }}
|
||||
</p>
|
||||
<!-- Title -->
|
||||
<h1 class="lg:text-6xl text-4xl text-center font-semibold tracking-tight text-balance text-gray-900">
|
||||
{{ title }}
|
||||
</h1>
|
||||
<!-- Subtitle -->
|
||||
<h2 class="text-balance lg:text-5xl text-center text-4xl font-normal tracking-tight text-gray-700 mt-2">
|
||||
{{ subtitle }}
|
||||
</h2>
|
||||
<!-- Description -->
|
||||
<p class="mt-6 lg:text-lg text-sm font-light text-center text-gray-600 max-w-2xl mx-auto">
|
||||
{{ description }}
|
||||
</p>
|
||||
<!-- CTA Buttons -->
|
||||
<div class="mt-8 flex flex-col sm:flex-row items-center justify-center gap-4 sm:gap-6">
|
||||
<a href="{{ button1_link }}" class="inline-block rounded-lg bg-gray-900 px-5 py-3 text-sm font-semibold text-white shadow-md hover:bg-gray-700 focus-visible:outline focus-visible:ring-2 focus-visible:ring-gray-700 focus-visible:ring-offset-2">
|
||||
{{ button1_text }}
|
||||
</a>
|
||||
<a href="{{ button2_link }}" class="text-sm font-semibold text-gray-900 hover:text-gray-600">{{ button2_text }} <span aria-hidden="true">→</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user