initial commit

This commit is contained in:
Daniil Gazizullin 2025-11-24 13:02:07 +03:00
commit f9a42c4248
No known key found for this signature in database
2 changed files with 33 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_Store

32
dist/index.html vendored Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Redirecting...</title>
<meta http-equiv="refresh" content="2;url=https://hypershelf.globalservices.stf">
<script>
setTimeout(function () {
window.location.href = "https://hypershelf.globalservices.stf";
}, 2000);
</script>
<link href="https://fonts.googleapis.com/css2?family=Geist&display=swap" rel="stylesheet" />
<style>
body {
background: #040404;
color: #fff;
font-family: Geist;
text-align: center;
}
</style>
</head>
<body>
<h1>Redirecting to Hypershelf...</h1>
<p>If you are not redirected automatically, <a href="https://hypershelf.globalservices.stf" id="manual-redirect">click
here</a>.</p>
</body>
</html>