99 lines
2.2 KiB
HTML
99 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nothing to see here</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
|
|
|
<style>
|
|
* {
|
|
border-radius: 0 !important;
|
|
transition: none !important;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
background: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
.box {
|
|
border: 2px solid #000;
|
|
padding: 20px;
|
|
background: #fff;
|
|
width: 100%;
|
|
}
|
|
|
|
.button {
|
|
border: 2px solid #000;
|
|
background: #eee;
|
|
padding: 4px 12px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.button:hover {
|
|
background: #ccc;
|
|
}
|
|
|
|
.button:active {
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
.title {
|
|
font-size: 28px;
|
|
font-weight: 900;
|
|
border-bottom: 2px solid #000;
|
|
margin-bottom: 10px;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="min-h-screen flex items-center justify-center p-4">
|
|
|
|
<div class="w-full max-w-[493px] flex flex-col items-center">
|
|
|
|
<div class="box text-center">
|
|
|
|
<div class="title">
|
|
NOTHING TO SEE HERE
|
|
</div>
|
|
|
|
<div class="subtitle">
|
|
MOVE ALONG
|
|
</div>
|
|
|
|
<div class="text">
|
|
This page is empty,<br>
|
|
unavailable, private,<br>
|
|
or intentionally left blank.
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<a href="/" class="button w-full">GO BACK</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |