blob: 7345e65af044c52102be3cd3cb7e9e48c5c0705e [file] [log] [blame] [view]
---
title: Use Cases
layout: none
---
{{$solutions := pages "/solutions/*"}}
<section class="Solutions-header">
<div class="Container">
{{breadcrumbs .}}
<h1 class="Solutions-useCase__title">Use Cases</h1>
</div>
</section>
<section class="Solutions-useCases">
<div class="Container">
<ul class="MarketingCardList">
{{- range newest $solutions}}
{{- if eq .series "Use Cases"}}
<li class="MarketingCard">
<a href="{{.URL}}">
<div class="MarketingCard-section">
{{- $icon := .icon}}
{{- $iconDark := .iconDark}}
{{- if $icon}}
<img
class="LightMode-img"
loading="lazy"
alt="{{$icon.alt}}"
src="{{path.Dir .URL}}/{{$icon.file}}"
/>
{{- end}}
{{- if $iconDark}}
<img
class="DarkMode-img"
loading="lazy"
alt="{{$iconDark.alt}}"
src="{{path.Dir .URL}}/{{$iconDark.file}}"
/>
{{- end}}
</div>
<div class="MarketingCard-section MarketingCard-section__spacer">
<h3 class="MarketingCard-title">{{or .linkTitle .title}}</h3>
<p class="MarketingCard-body">
{{.description}}
</p>
</div>
<div class="MarketingCard-section__bottom" aria-describedby="usecase-description">
<p class="MarketingCard-action">
Learn More
</p>
</div>
</a>
</li>
{{- end}}
{{- end}}
</ul>
</div>
<div class="screen-reader-only" id="usecase-description" hidden>
Opens in new window.
</div>
</section>