summaryrefslogtreecommitdiff
path: root/examples/portfolio/src/pages/404.astro
blob: 48ec8d3108d0be6c32884335a2b9d3f949e06547 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
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>