17 lines
601 B
HTML
17 lines
601 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Home · Steady{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="hero" aria-labelledby="welcome-heading">
|
|
<p class="eyebrow">One calm step at a time</p>
|
|
<h1 id="welcome-heading">Welcome to Steady</h1>
|
|
{% if current_user.is_authenticated %}
|
|
<p>Your workspace is ready. Task management arrives in Phase 2.</p>
|
|
{% else %}
|
|
<p>A quiet, ADHD-friendly place to capture and complete what matters.</p>
|
|
<a class="button" href="{{ url_for('auth.register') }}">Create your account</a>
|
|
{% endif %}
|
|
</section>
|
|
{% endblock %}
|
|
|