Files
Website/layouts/partials/usps.html
2026-02-24 19:10:47 +01:00

16 lines
755 B
HTML

<section class="usp-bar py-3 py-lg-4 bg-white">
<div class="container px-lg-5">
<div class="row g-3 g-lg-4 justify-content-center">
{{ range .Params.usps }}
<div class="col-auto mx-auto fade-up">
<div class="usp-item d-flex align-items-center">
<svg class="me-2" width="26" height="22" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.5 7.5L6.5 12.5L16.5 1.5" stroke="#B95913" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="usp-text">{{ . }}</span>
</div>
</div>
{{ end }}
</div>
</div>
</section>