add 404 page
This commit is contained in:
parent
4df460d25f
commit
78cfe1b4f5
1 changed files with 23 additions and 0 deletions
23
src/pages/404.astro
Normal file
23
src/pages/404.astro
Normal 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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue