-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (22 loc) · 1.56 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Open Internet Metaverse App</title>
<meta name='author' content='Alex Agudelo, Patrick Friedrich'>
<meta name='description' content='Users can create and edit their Personal Web Spaces on this web app. Each Personal Web Space is itself an NFT hosted on the Internet Computer blockchain platform, contains all data to be rendered and displayed as a 3D webpage in any browser and can be viewed at a unique URL. On this web app, Users can see which spaces they own and how they look when displayed as a webpage. They can then go ahead and edit their spaces (and thus the displayed 3D webpage).'>
<meta name='robots' content='index, follow'>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<script src="https://aframe.io/releases/1.4.2/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/c-frame/aframe-extras@7.0.0/dist/aframe-extras.min.js"></script>
<script src="https://unpkg.com/aframe-environment-component@1.3.3/dist/aframe-environment-component.min.js"></script>
<script src="https://mannymeadows.github.io/Noosa/aframe-sun-sky.min.js"></script>
<script type="module" src="src/PersonalWebSpace_frontend/helpers/webportal.js"></script>
<script type="module" src="src/PersonalWebSpace_frontend/helpers/video-play-on-click.js"></script>
<script type="module" src="src/PersonalWebSpace_frontend/helpers/new-tab-link.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/PersonalWebSpace_frontend/main.ts"></script>
</body>
</html>