🎉 initial commit

This commit is contained in:
mi
2025-11-06 21:18:44 +10:00
commit d5030f6456
11 changed files with 745 additions and 0 deletions

10
templates/404.html Normal file
View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<div class="error-page">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, the page you're looking for doesn't exist.</p>
<a href="{{ url_for('index') }}" class="btn">Go Home</a>
</div>
{% endblock %}