website/layouts/partials/cta-join.html
Pierre-Olivier Mercier 0631bb255f Complete Umami event tracking coverage across all partials
Add data-umami-event attributes to all meaningful links that were
missing tracking:
- Footer: try-it, GitHub, docs, API, blog, newsletter, community,
  about, contact, and all social icons (Framagit, GitHub, feedback,
  Mastodon, email)
- CTA join section: primary signup button
- Usage footer: survey, Matrix, IRC, and about links (with per-page
  content base name for granular tracking)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 09:22:03 +07:00

14 lines
545 B
HTML

<!-- Call to Action Section -->
<section id="cta">
<div class="container">
<div class="cta-content">
<h2 class="display-5 font-weight-bold mb-4">{{ i18n "cta-account-title" }}</h2>
<div class="row mb-4">
<p class="offset-sm-1 col-sm-10 offset-md-2 col-md-8 lead text-light">
{{ i18n "cta-account-text" }}
</p>
</div>
<a href="/join" class="btn btn-lg btn-light px-4" style="border-radius: 2em" data-umami-event="cta-join">{{ i18n "cta-account-button" }}</a>
</div>
</div>
</section>