Initial commit: Hugo setup met Bootstrap

This commit is contained in:
2026-02-21 11:15:13 +01:00
commit a16546a971
30 changed files with 806 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<section class="hero-section py-5 my-lg-5">
<div class="container">
<div class="row align-items-end">
<div class="col-lg-7">
<h1 class="display-3 mb-5">{{ .Params.hero.title }}</h1>
<a href="{{ .Params.hero.cta_link }}" class="btn btn-cta">
{{ .Params.hero.cta_text }} <i class="bi bi-chevron-right ms-2"></i>
</a>
</div>
<div class="col-lg-4 offset-lg-1">
<p class="lead mb-2">
{{ .Params.hero.subtitle }}
</p>
</div>
</div>
</div>
</section>