flask_template_codex/app/templates/core/index.html
2026-08-08 03:00:29 +02:00

17 lines
668 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. Choose one calm next step.</p>
<a class="button" href="{{ url_for('tasks.today') }}">Open Today</a>
{% 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 %}