-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="refresh" content="2;url=https://discord.com/invite/br46C4NFye"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>HyperBlock - Redirecting...</title> | ||
|
||
<!-- Favicons --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png"> | ||
<link rel="manifest" href="/favicons/site.webmanifest"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Font Awesome Icons --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
<!-- Google Fonts --> | ||
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> | ||
|
||
<!-- Custom CSS --> | ||
<style> | ||
body { | ||
background: linear-gradient(45deg, #800080, #DA70D6, #8A2BE2, #DA70D6); | ||
background-size: 400% 400%; | ||
animation: gradientBG 10s ease infinite; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
font-family: 'Quicksand', sans-serif; | ||
color: white; | ||
text-align: center; | ||
} | ||
|
||
@keyframes gradientBG { | ||
0% { background-position: 0% 50%; } | ||
50% { background-position: 100% 50%; } | ||
100% { background-position: 0% 50%; } | ||
} | ||
|
||
.redirect-container { | ||
text-align: center; | ||
} | ||
|
||
.redirect-container h1 { | ||
font-size: 3em; | ||
margin: 0; | ||
animation: pulse 1.5s infinite; | ||
} | ||
|
||
@keyframes pulse { | ||
0% { transform: scale(1); } | ||
50% { transform: scale(1.1); } | ||
100% { transform: scale(1); } | ||
} | ||
|
||
.redirect-container p { | ||
font-size: 1.2em; | ||
} | ||
|
||
.redirect-container a { | ||
color: #FFD700; | ||
text-decoration: none; | ||
font-weight: bold; | ||
} | ||
|
||
.redirect-container a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.spinner { | ||
margin-top: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="redirect-container"> | ||
<h1>HyperBlock</h1> | ||
<p>Redirecting you to our Discord server...</p> | ||
<p>If you are not redirected automatically, click <a href="https://discord.com/invite/br46C4NFye">here</a>.</p> | ||
<div class="spinner-border text-light spinner" role="status"> | ||
<span class="visually-hidden">Loading...</span> | ||
</div> | ||
</div> | ||
|
||
<!-- JavaScript Libraries --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/js/all.min.js" integrity="sha512-2bMhOkE/ACz21dJT8zBOMgMecNxx0d37NND803ExktKiKdSzdwn+L7i9fdccw/3V06gM/DBWKbYmQvKMdAA9Nw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |