-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.53 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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<!-- {GTM_EMBED_CODE_PLACEHOLDER} -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Planet</title>
<link rel="icon" href="./src/assets/icons/favicon/planet-icon-01.ico" />
<link rel="stylesheet" type="text/css" href="./src/web/styles.css" />
<script type="module" src="./src/index.ts"></script>
</head>
<!-- Loading is handled in the "mp-planet-splash" component. -->
<body loading>
<mp-planet-favicon></mp-planet-favicon>
<mp-planet-splash></mp-planet-splash>
<mp-planet></mp-planet>
<mp-continents-menu></mp-continents-menu>
<!-- Continent names are set in continent classes and 3D model in
camelCase and are converted to kebab-case in planet. -->
<mp-continents>
<mp-about-continent
style="--primary-color: #d45c2a; --secondary-color: #ef941c"
></mp-about-continent>
<mp-projects-continent
style="--primary-color: #6eb844; --secondary-color: #9acd7d"
></mp-projects-continent>
<mp-work-continent
style="--primary-color: #4289c9; --secondary-color: #65b6ff"
></mp-work-continent>
<mp-life-continent
style="--primary-color: #ff4e4e; --secondary-color: #ff9d81"
></mp-life-continent>
<mp-connect-continent
style="--primary-color: #000000; --secondary-color: #808080"
></mp-connect-continent>
</mp-continents>
</body>
</html>