-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 3.21 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 3.21 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" oncontextmenu="return false">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="NIGHTFALL - Your ultimate streaming service for movies and TV shows" />
<meta name="keywords" content="streaming, movies, tv shows, nightfall, entertainment, watch online" />
<meta name="author" content="NIGHTFALL Team" />
<meta property="og:title" content="NIGHTFALL - Streaming Service" />
<meta property="og:description" content="Discover and stream your favorite movies and TV shows with NIGHTFALL" />
<meta property="og:image" content="https://img.freepik.com/premium-photo/3d-bat-full-moon-border-with-nightfall-text-concept-as-dark-eerie-border-frame-featuring-b_980716-577940.jpg?w=2000" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NIGHTFALL - Streaming Service" />
<meta name="twitter:description" content="Stream movies and TV shows online" />
<meta name="twitter:image" content="https://img.freepik.com/premium-photo/3d-bat-full-moon-border-with-nightfall-text-concept-as-dark-eerie-border-frame-featuring-b_980716-577940.jpg?w=2000" />
<link rel="icon" href="https://img.freepik.com/premium-photo/3d-bat-full-moon-border-with-nightfall-text-concept-as-dark-eerie-border-frame-featuring-b_980716-577940.jpg?w=2000" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9097893369149135" crossorigin="anonymous"></script>
<title>NIGHTFALL</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
body.loading {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #000;
color: #fff;
}
#enter-btn {
background: #ff0000;
color: #fff;
border: none;
padding: 12px 28px;
cursor: pointer;
border-radius: 8px;
font-size: 18px;
letter-spacing: 1px;
text-transform: uppercase;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
#enter-btn:hover {
background: #cc0000;
}
</style>
<script type="module" crossorigin src="/nightfall/assets/index-BbPbXNKN.js"></script>
<link rel="stylesheet" crossorigin href="/nightfall/assets/index-Bpk67r0V.css">
<link rel="manifest" href="/nightfall/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/nightfall/registerSW.js"></script></head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" style="display: none;"></div>
<button id="enter-btn">Enter</button>
<script>
document.body.classList.add('loading');
const enterButton = document.getElementById('enter-btn');
enterButton.addEventListener('click', () => {
document.body.classList.remove('loading');
enterButton.remove();
document.getElementById('root').style.display = 'block';
});
</script>
</body>
</html>