This repository was archived by the owner on Jan 23, 2025. It is now read-only.
forked from TailGrids/tailgrids
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
67 lines (66 loc) 路 2.24 KB
/
Copy path404.html
File metadata and controls
67 lines (66 loc) 路 2.24 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error 404 | TailGrids</title>
<link
rel="shortcut icon"
href="assets/images/favicon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/tailwind.css" />
</head>
<body>
<!-- ====== Error 404 Section Start -->
<section class="relative z-10 bg-primary py-[120px]">
<div class="container mx-auto">
<div class="-mx-4 flex">
<div class="w-full px-4">
<div class="mx-auto max-w-[400px] text-center">
<h2
class="mb-2 text-[50px] font-bold leading-none text-white sm:text-[80px] md:text-[100px]"
>
404
</h2>
<h4
class="mb-3 text-[22px] font-semibold leading-tight text-white"
>
Oops! That page can鈥檛 be found
</h4>
<p class="mb-8 text-lg text-white">
The page you are looking for it maybe deleted
</p>
<a
href="javascript:void(0)"
class="inline-block rounded-lg border border-white px-8 py-3 text-center text-base font-semibold text-white transition hover:bg-white hover:text-primary"
>
Go To Home
</a>
</div>
</div>
</div>
</div>
<div
class="absolute left-0 top-0 -z-10 flex h-full w-full items-center justify-between space-x-5 md:space-x-8 lg:space-x-14"
>
<div
class="h-full w-1/3 bg-gradient-to-t from-[#FFFFFF14] to-[#C4C4C400]"
></div>
<div class="flex h-full w-1/3">
<div
class="h-full w-1/2 bg-gradient-to-b from-[#FFFFFF14] to-[#C4C4C400]"
></div>
<div
class="h-full w-1/2 bg-gradient-to-t from-[#FFFFFF14] to-[#C4C4C400]"
></div>
</div>
<div
class="h-full w-1/3 bg-gradient-to-b from-[#FFFFFF14] to-[#C4C4C400]"
></div>
</div>
</section>
<!-- ====== Error 404 Section End -->
</body>
</html>