add 404 page

This commit is contained in:
Osman Faruk Bayram 2024-10-26 00:53:47 +03:00
parent 4df460d25f
commit 78cfe1b4f5

23
src/pages/404.astro Normal file
View file

@ -0,0 +1,23 @@
---
import "../styles/global.css";
import Footer from "../components/Footer.astro";
import Header from "../components/Header.astro";
import Metadata from "../components/Metadata.astro";
---
<!doctype html>
<html lang="en">
<head>
<Metadata />
<title>Not found</title>
</head>
<body>
<Header />
<main>
<h1>Not found</h1>
<p>Hey you are not supposed to be here.</p>
</main>
<Footer />
</body>
</html>