website/layouts/index.html
Pierre-Olivier Mercier b3830ab7c4 Redesign discover section and add personas grid
Rework "How it works" into a flat three-step grid with health-check
messaging and a row of reassurance promises. Add a new personas section
on the home page and back it with a screenshot background on the CTA band.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-12 13:24:10 +09:00

42 lines
757 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" style="background-color: var(--bs-dark)">
{{ partial "head.html" . }}
<body>
<div id="all">
{{ partial "top.html" . }}
{{ partial "nav.html" . }}
{{ partial "jumbo.html" . }}
{{ partial "carousel.html" . }}
{{ partial "features.html" . }}
{{ partial "discover.html" . }}
{{ partial "personas.html" . }}
{{/* partial "testimonials.html" . */}}
{{ partial "cta-join.html" . }}
{{ partial "downloads.html" . }}
{{/* partial "community.html" . */}}
{{/* partial "cta-newsletter.html" . */}}
</div>
<!-- /#all -->
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}
</body>
</html>