-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
38 lines (37 loc) · 1.13 KB
/
404.html
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
28
29
30
31
32
33
34
35
36
37
38
---
permalink: /404/
title: You got lost!
layout: empty
---
<main
class="min-h-full bg-cover bg-top sm:bg-top"
style="
background-image: url('https://images.unsplash.com/photo-1545972154-9bb223aac798?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3050&q=80&exp=8&con=-15&sat=-75');
"
>
<div
class="mx-auto max-w-7xl px-4 py-16 text-center sm:px-6 sm:py-24 lg:px-8 lg:py-48"
>
<p
class="text-sm font-semibold uppercase tracking-wide text-black text-opacity-50"
>
404 error
</p>
<h1
class="mt-2 text-4xl font-extrabold tracking-tight text-white sm:text-5xl"
>
Uh oh! I think you’re lost.
</h1>
<p class="mt-2 text-lg font-medium text-black text-opacity-50">
It looks like the page you’re looking for doesn't exist.
</p>
<div class="mt-6">
<a
href="/"
class="inline-flex items-center rounded-md border border-transparent bg-white bg-opacity-75 px-4 py-2 text-sm font-medium text-black text-opacity-75 sm:bg-opacity-25 sm:hover:bg-opacity-50"
>
Go back home
</a>
</div>
</div>
</main>