Fix portfolio example (#196)
This commit is contained in:
parent
e0fc2ca097
commit
d2eb413a6e
2 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
import NotFound from '../components/NotFound.astro';
|
import MainHead from '../components/MainHead.astro';
|
||||||
import Footer from '../components/Footer/index.jsx';
|
import Footer from '../components/Footer/index.jsx';
|
||||||
import Nav from '../components/Nav/index.jsx';
|
import Nav from '../components/Nav/index.jsx';
|
||||||
---
|
---
|
||||||
|
@ -10,8 +10,10 @@ import Nav from '../components/Nav/index.jsx';
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<Nav />
|
<Nav />
|
||||||
|
<div class="wrapper mt4 mb4">
|
||||||
<h1>Page Not Found</h1>
|
<h1>Page Not Found</h1>
|
||||||
<p>Not found</p>
|
<p>Not found</p>
|
||||||
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue