-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.html
83 lines (76 loc) · 2.78 KB
/
app.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GO Web Store | Apps</title>
<meta name="theme-color" content="#10131a" />
<meta name="description" content="A web store built for the liquid galaxy apps.">
<meta property="og:title" content="GO Web Store by liquid galaxy">
<meta property="og:description" content="A web store built for the liquid galaxy apps.">
<meta property="og:image"
content="https://raw.githubusercontent.com/LiquidGalaxyLAB/GO-Web-Store/refs/heads/main/assets/Cover.png">
<meta property="og:url" content="https://store.liquidgalaxy.eu">
<meta property="og:type" content="website">
<meta name="canonical" content="https://store.liquidgalaxy.eu">
<link rel="shortcut icon" href="./assets/Go Web Store.svg" type="image/x-icon">
<link rel="manifest" href="./manifest.json">
<script type="importmap">
{
"imports": {
"@material/web/": "https://esm.run/@material/web/"
}
}
</script>
<script type="module">
import '@material/web/all.js';
import {
styles as typescaleStyles
} from '@material/web/typography/md-typescale-styles.js';
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);
</script>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/vt-app.css">
<script type="module" src="./js/app.js" defer></script>
<style>
@font-face {
font-family: 'Material Symbols Outlined';
font-style: normal;
font-weight: 400;
src: url("./fonts/Material\ Symbols.woff") format('woff');
}
.material-symbols-outlined {
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
</style>
</head>
<body>
<header>
<a href="./#"><md-ripple></md-ripple><img src="./assets/Back.svg" alt="Go Back"></a>
</header>
<main>
<download-app></download-app>
<app-details></app-details>
<carousel-component></carousel-component>
</main>
<script>
function sendHeight() {
window.parent.postMessage(document.body.scrollHeight, '*');
}
window.onload = sendHeight;
window.onresize = sendHeight;
</script>
</body>
</html>