0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/examples/portfolio/src/pages/404.astro
2021-12-22 16:11:05 -05:00

19 lines
365 B
Text

---
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>