Fix portfolio example (#196)

This commit is contained in:
Drew Powers 2021-05-11 10:40:04 -06:00 committed by GitHub
parent e0fc2ca097
commit d2eb413a6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,5 @@
---
import NotFound from '../components/NotFound.astro';
import MainHead from '../components/MainHead.astro';
import Footer from '../components/Footer/index.jsx';
import Nav from '../components/Nav/index.jsx';
---
@ -10,8 +10,10 @@ import Nav from '../components/Nav/index.jsx';
</head>
<body>
<Nav />
<h1>Page Not Found</h1>
<p>Not found</p>
<div class="wrapper mt4 mb4">
<h1>Page Not Found</h1>
<p>Not found</p>
</div>
<Footer />
</body>
</html>