feat: error banners and first-run navigation flow

This commit is contained in:
Joseph Doherty
2026-04-26 14:33:28 -04:00
parent 0353d592cd
commit a302ed427a
7 changed files with 354 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
{% extends "layout.html" %}
{% block title %}Error - chat{% endblock %}
{% block content %}
<div class="error-page">
<h1>{{ status_code }}</h1>
<p>{{ detail }}</p>
<p><a href="/chats">Back to chats</a></p>
</div>
{% endblock %}