summaryrefslogtreecommitdiff
path: root/examples/portfolio/src/pages/404.astro
blob: 39f5994ae89fd762b68b4a2c2330fa2c7972f9cd (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 />
		<div class="wrapper mt4 mb4">
			<h1>Page Not Found</h1>
			<p>Not found</p>
		</div>
		<footer />
	</body>
</html>