-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshutdown.html
76 lines (70 loc) · 2.05 KB
/
shutdown.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BroFlix - Shutdown Notice</title>
<style>
body {
margin: 0;
padding: 20px;
background-color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: Arial, sans-serif;
color: white;
text-align: center;
box-sizing: border-box;
}
.logo {
color: #e50914;
font-size: 48px;
font-weight: bold;
margin-bottom: 40px;
}
.notice {
max-width: 600px;
margin-bottom: 40px;
line-height: 1.6;
font-size: 18px;
}
.alternative {
margin-bottom: 30px;
font-size: 16px;
}
.alternative a {
color: #e50914;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.alternative a:hover {
color: #ff1a1a;
}
.farewell {
font-style: italic;
color: #808080;
font-size: 14px;
}
</style>
</head>
<body>
<div class="logo">
BroFlix
</div>
<div class="notice">
We regret to inform you that BroFlix has been shut down due to ongoing revenue challenges and increasing operational costs. The rising expenses of server maintenance, content delivery, and other technical requirements have made it unsustainable to continue providing our service at the level of quality you deserve.
</div>
<div class="alternative">
For an alternative streaming experience, we recommend:
<br><br>
<a href="https://www.cineby.app/" target="_blank">Visit Cineby.app</a>
</div>
<div class="farewell">
Thank you for being part of it
</div>
</body>
</html>