website/layouts/partials/cta-join.html
Pierre-Olivier Mercier 9e66092695
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Redirect sign-in and register links to a beta landing page
Public registrations on app.happydomain.org are paused. Route the
sign-in, register, and join entry points to a new /beta/ page that
explains the beta program and points users to self-hosting via the
binary or Docker image.
2026-06-04 11:43:06 +09:00

24 lines
760 B
HTML

<!-- Call to Action Section -->
<section id="cta">
<div class="container">
<div class="cta-content">
<h2 class="display-5 fw-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="/beta/"
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>