-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.33 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.33 KB
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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dimensional Wave</title>
<meta name="description" content="Experiences that are unbounded from reality.">
<!-- Icons -->
<link rel="icon" type="image/png" href="/src/assets/icons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/src/assets/icons/favicon.svg" />
<link rel="shortcut icon" href="/src/assets/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/src/assets/icons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Dimensional Wave" />
<link rel="manifest" href="/src/assets/icons/site.webmanifest" />
<!-- Layer Order -->
<style>@layer tailwind-base, primevue, tailwind-utilities, theme;</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VPG8Q4G4PZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VPG8Q4G4PZ');
</script>
</head>
<body class="font-sans antialiased bg-gray-900">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>