-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
33 lines (29 loc) · 907 Bytes
/
landing.html
File metadata and controls
33 lines (29 loc) · 907 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0; url=index.html" />
<title>Redirecting...</title>
<link rel="icon" type="image/svg+xml" href="assets/img/Icon/app-icon.svg">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<script>window.location.replace('index.html');</script>
<style>
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font: 16px system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
background: #000;
color: #ccc
}
a {
color: #ff9d1c
}
</style>
</head>
<body>
Redirecting to the public AR experience... If it does not redirect automatically, click <a
href="index.html">here</a>.
</body>
</html>