forked from amitmerchant1990/reverie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.38 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SEACrowd - Redirecting to New Site</title>
<meta http-equiv="refresh" content="0; url=https://seacrowd.org/" />
<link rel="canonical" href="https://seacrowd.org/" />
<script>
window.location.href = "https://seacrowd.org/"
</script>
<style>
body {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 50px auto;
padding: 20px;
text-align: center;
}
.redirect-message {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 30px;
margin: 20px 0;
}
.redirect-link {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
.redirect-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="redirect-message">
<h1>SEACrowd Has Moved!</h1>
<p>We have moved to a new website for a better experience.</p>
<p>You will be automatically redirected to our new site in a moment.</p>
<p>If you are not redirected automatically, please click the link below:</p>
<p>
<a href="https://seacrowd.org/" class="redirect-link">Visit seacrowd.org</a>
</p>
</div>
</body>
</html>