-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.37 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>VoidCore.js v14.0 - Pure Message System</title>
<meta http-equiv="refresh" content="0; url=./examples/">
<script>
// Immediate redirect for better compatibility
window.location.href = './examples/';
</script>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}
.redirect-message {
background: rgba(255,255,255,0.1);
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.2);
}
</style>
</head>
<body>
<div class="redirect-message">
<h1>🌟 VoidCore.js v14.0</h1>
<p>Pure Message-Based System</p>
<br>
<p>Redirecting to examples...</p>
<p>If you are not redirected automatically, <a href="./examples/" style="color: #87ceeb;">click here</a>.</p>
<br>
<small>🚀 セリンの大改革完了!基底クラス継承完全排除!</small>
</div>
</body>
</html>