-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
39 lines (36 loc) · 1.15 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/graasp.svg?v=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Knowledge sharing without borders. Communicate, Collaborate, Build Engaging Learning Experiences"
/>
<meta
name="version-info"
content="%VITE_VERSION% @ %VITE_BUILD_TIMESTAMP%"
/>
<!-- Load Nunito font from Google fonts -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
/>
<!-- Umami tracking code -->
<!--
The integrity can not be checked when using cross origin
integrity="sha384-JyQQf9XxkMfVx/h+OQ+SxUZqLbL3p3KmWfnZ4LpQWzksmzHXESgXCk1/5AYxT9nR"
-->
<script
defer
src="https://cloud.umami.is/script.js"
data-website-id="%VITE_UMAMI_WEBSITE_ID%"
></script>
<title>Graasp Builder</title>
</head>
<body>
<div id="root" style="width: 100%"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>