Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task/add redirect to website #549

Merged
merged 3 commits into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 36 additions & 14 deletions website/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,39 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0; URL='https://www.ver.ax" />
<link rel="icon" type="image/svg+xml" href="src/assets/verax-logo-circle.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Verax Attestation Registry</title>
</head>
<body style="width: 100%; background: #000; height: 100%; overflow: hidden">
<!--
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
-->
<div style="position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); font: 2em arial; color: #fff;">loading...</div>
</body>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0; URL='https://www.ver.ax" />
<link rel="icon" type="image/svg+xml" href="src/assets/verax-logo-circle.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Verax Attestation Registry</title>

<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}

body {
background: linear-gradient(to bottom, #2d2d2d, #000000) no-repeat;
background-size: 100% 100%;
}

#loader {
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
font: 1.5em arial;
color: rgba(255, 255, 255, 0.61);
letter-spacing: 1px;
}
</style>
</head>

<body>
<div id="loader">loading...</div>
</body>
</html>
Loading