summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/404.astro
blob: ea70f098f1b810df38b2312b1236bc7acf543e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
import BaseHead from '../components/BaseHead.astro';
import MainLayout from '../components/MainLayout.astro';

let title = 'Not Found';
let description = 'Snowpack is a lightning-fast frontend build tool, designed for the modern web.';
---

<!doctype html>
<html lang="en">

<head>
  <BaseHead title={title} description={description} permalink="TODO" />
</head>

<body>
  <MainLayout>
    <h2 class="content-title">
      {title}
    </h2>
    <div class="content">
      <a href="/">Go Home</a>
    </div>
  </MainLayout>
</body>

</html>