michalvankodev-site/templates/not_found.html

16 lines
513 B
HTML
Raw Permalink Normal View History

2024-10-03 14:59:28 +02:00
{% 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 %}