forked from DomeQdev/zbiorkom.live
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 2.27 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 2.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta property="og:title" content="🚈 zbiorkom.live" />
<meta property="og:image" content="/logo512.png" />
<link rel="icon" href="/favicon.svg" />
<link rel="manifest" href="/manifest.json" />
<meta
property="og:description"
content="Odkrywaj komunikację miejską w swoim mieście na nowo ✨ z zbiorkom.live. Śledź pojazdy na mapie, sprawdź ich trasy oraz najbliższe odjazdy z przystanków. Dostosuj wyświetlanie dzięki filtrom linii i modelu pojazdu."
/>
<meta
name="description"
content="Śledź w czasie rzeczywistym ruch autobusów, tramwajów i pociągów. Klikając na pojazd lub przystanek, uzyskaj szczegółowe informacje o trasie oraz najbliższych odjazdach. Dostosuj widok mapy, filtrując według interesujących Cię linii lub modelu pojazdu, by szybko i sprawnie planować swoją podróż."
/>
<meta name="theme-color" content="#276b2b" />
<meta content="dark light" name="color-scheme" />
<title>zbiorkom.live</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<noscript><div data-nosnippet="true">Włącz JavaScript, aby uruchomić tą aplikację.</div></noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script>
document
.querySelector("meta[name=theme-color]")
.setAttribute("content", localStorage.getItem("themeColor") || "#276b2b");
if (localStorage.getItem("disableLiquidGlass") === "true") {
document.body.classList.add("disable-liquid-glass");
}
</script>
</body>
</html>