This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/src/pages/404.astro
2024-03-30 20:22:57 +01:00

24 lines
673 B
Plaintext

---
import Layout from "../layouts/Layout.astro";
import { Icon } from "astro-icon/components";
const unsortedDocs = await Astro.glob("./docs/*/index.{md,mdx}");
const docs = unsortedDocs.sort(
(a, b) => +new Date(b.frontmatter.date) - +new Date(a.frontmatter.date)
);
---
<Layout
title="ERROR 404"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>
<div class="center">
<h1 style="text-align: center;">ERROR 404</h1>
<br/>
<p style="font-size: 22px;">The page either never existed or was renamed.<br/>
Try something in the navabar above!</p>
</div>
</main>
</Layout>