-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (105 loc) · 3.11 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Domain Change Notice for Vuelto</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
text-align: center;
padding-bottom: 60px; /* Space for footer */
}
header {
display: flex;
color: white;
padding: 20px;
}
.header-left {
background-color: #005bbb; /* Blue (upper part of Ukrainian flag) */
flex: 1;
text-align: center;
padding: 10px;
}
.header-right {
background-color: #fcd116; /* Yellow (lower part of Ukrainian flag) */
flex: 1;
text-align: center;
padding: 10px;
}
h1 {
color: white;
margin: 0;
font-size: 2em;
}
main {
padding: 30px;
}
p {
font-size: 1.2em;
}
.highlight {
color: #fcd116; /* Yellow (lower part of Ukrainian flag) */
font-weight: bold;
}
footer {
background-color: #005bbb; /* Blue (same as header left) */
color: white;
padding: 20px;
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
}
a {
color: #005bbb; /* Blue */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.report-link {
font-size: 1.5em; /* Larger font for reporting links */
color: #333;
text-decoration: none;
}
.report-link:hover {
text-decoration: underline;
}
.domain-link {
color: #fcd116; /* Yellow for the domains */
font-weight: bold;
font-size: 1.2em;
}
</style>
</head>
<body>
<header>
<div class="header-left">
<h1>Important Notice: Vuelto Project Domain Change</h1>
</div>
<div class="header-right">
<h1>Vuelto has moved!</h1>
</div>
</header>
<main>
<p>The Vuelto project has moved to a new domain! The old domain <a href="http://vuelto.me" class="domain-link" target="_blank">vuelto.me</a> is no longer in use.</p>
<p>We are now located at <a href="http://vuelto.pp.ua" class="domain-link" target="_blank">vuelto.pp.ua</a>.</p>
<p>If you have found this page through a link to the old domain, please let us know where you encountered it so we can update the link.</p>
<p>Your help in reporting any outdated links is greatly appreciated!</p>
<h2>How to Report Old Links</h2>
<p>To report any old links, you can:</p>
<ul>
<li><a href="https://vuelto.pp.ua/repo" target="_blank" class="report-link">Open an issue on our GitHub repository</a>.</li>
<li><a href="https://vuelto.pp.ua/discord" target="_blank" class="report-link">Join our community on Discord and report the issue there</a>.</li>
</ul>
</main>
<footer>
<p>© 2024 Vuelto Team ❤️</p>
</footer>
</body>
</html>