blob: f4ad6611945a63c664be7528ff822c5d52160da6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
import MainHead from "../components/MainHead.astro";
import Footer from "../components/Footer/index.jsx";
import Nav from "../components/Nav/index.jsx";
---
<html lang="en">
<head>
<MainHead title="Not Found" />
</head>
<body>
<nav></nav>
<div class="wrapper mt4 mb4">
<h1>Page Not Found</h1>
<p>Not found</p>
</div>
<footer></footer>
</body>
</html>
|