-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
30 lines (26 loc) · 914 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<title>{ Immersal AR 8thwall Template }</title>
<!-- XR Extras - provides utilities like load screen, almost there, and error handling.
See github.com/8thwall/web/tree/master/xrextras -->
<script src="//cdn.8thwall.com/web/xrextras/xrextras.js"></script>
<!-- 8thWall Web - Replace the app key here with your own app key -->
<script
async
src="//apps.8thwall.com/xrweb?appKey=%VITE_8THWALL_APP_KEY%"
></script>
</head>
<body>
<div class="menu container"></div>
<div class="loading container"></div>
<canvas id="ar-canvas"></canvas>
<script type="module" src="/js/index.js"></script>
</body>
</html>