-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
90 lines (82 loc) · 3.27 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PixelCorder</title>
<!-- Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Capture and download your screen recording with ease.">
<!-- Open Graph (OG) meta tags -->
<meta property="og:title" content="PixelCorder">
<meta property="og:description" content="Capture and download your screen recording with ease.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://fl2on.github.io/PixelCorder/">
<meta property="og:image" content="images/icon.png">
<!-- Twitter meta tags -->
<meta property="twitter:card" content="https://fl2on.github.io/PixelCorder/images/card.jpeg">
<meta property="twitter:title" content="PixelCorder">
<meta property="twitter:description" content="Capture and download your screen recording with ease.">
<meta property="twitter:image" content="https://fl2on.github.io/PixelCorder/images/card.jpeg">
<!-- Favicon -->
<link rel="shortcut icon" href="images/icon.png" type="image/x-icon">
<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
overflow: hidden;
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
}
.background-container {
background-image: url('https://cdn.discordapp.com/attachments/689717323543609386/1194859282169090130/170494703131270818.png?ex=65b1e26c&is=659f6d6c&hm=adc907355c518128c1747a8cbc925a5859114ff71c4b1cd4aaeddd6272dcd811');
background-size: cover;
background-position: center;
filter: blur(15px);
transition: transform 0.5s;
}
.background-container:hover {
transform: scale(1.1);
}
.content {
text-align: center;
z-index: 1;
position: relative;
padding: 2em;
}
@media (max-width: 768px) {
.content {
padding: 1em;
}
h1 {
font-size: 4xl;
}
p {
font-size: large;
}
}
a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body class="bg-gray-900 text-white h-screen flex items-center justify-center">
<div class="background-container w-full h-full absolute inset-0"></div>
<div class="content relative z-10">
<h1 id="pageTitle" class="text-6xl font-bold mb-4">Sorry</h1>
<p id="pageDescription" class="text-2xl mb-8">This page is only compatible with desktop devices. Please visit our page from a desktop device.</p>
</div>
<!-- Script -->
<script>
document.addEventListener('DOMContentLoaded', function () {
const currentYear = new Date().getFullYear();
document.title = `PixelCorder | Copyright © ${currentYear} fl2on`;
});
</script>
</body>
</html>