-
Notifications
You must be signed in to change notification settings - Fork 11
/
comingsoon.html
68 lines (60 loc) · 1.65 KB
/
comingsoon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f2f2f2;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
max-width: 400px;
}
h1 {
color: #333;
}
p {
color: #666;
}
.button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 1em;
text-align: center;
text-decoration: none;
background-color: #4285f4;
color: #fff;
border: none;
border-radius: 20px;
cursor: pointer;
}
#githubBtn {
background-color: #24292e;
margin-right: 100px;
}
#discordBtn {
background-color: #7289da;
}
</style>
</head>
<body>
<div class="container">
<h1>Coming Soon</h1>
<p>We are working on brining you games, apps and settings as soon as we can!</p>
<h3>
Join our server if you have any suggestion and any issue click on github bttn
</h3>
<a href="https://github.com/xdevman1/WaveWanderV2/issues" target="_blank" class="button" id="githubBtn">GitHub</a>
<a href="https://discord.gg/eqs4fqjuwa" target="_blank" class="button" id="discordBtn">Discord</a>
</div>
</body>
</html>