so many changes
Some checks failed
test / cargo test (push) Failing after 1m2s

This commit is contained in:
2024-10-03 14:59:28 +02:00
parent 2979e21285
commit ceb3f4b89d
19 changed files with 124 additions and 66 deletions

15
templates/not_found.html Normal file
View File

@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block content %}
<section id="not-found-page">
<p class="mx-6 mt-3 text-4xl text-blue-950 text-center font-extrabold lg:mx-auto max-w-read">
This page doesn't exists
</p>
<p class="m-6 text-9xl text-blue-950 text-center font-extrabold lg:mx-auto max-w-read">😓
</p>
<p class="mx-6 mt-3 text-xl text-blue-950 text-center lg:mx-auto max-w-read">
check out <a href="/">introduction page</a> or <a href="/contact">contact page</a>
</p>
</section>
{% endblock %}