website/templates/section/hero.html
2023-11-14 13:51:12 +02:00

14 lines
489 B
HTML

<section class="hero">
<div class="container hero__container">
<div class="hero__content">
<h1 class="h1 hero__title">
{{ resource.title }}
</h1>
<p class="h1-sub hero__description">
{{ resource.description }}
</p>
{% include 'components/download-button.html' %}
</div>
<img class="hero__image" src="/images/hero/hero-image.png" alt="hero image">
</div>
</section>