-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 loc) · 2.08 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
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aero Weather</title>
<meta name="description" content="Weather app with a Windows Aero inspired design." />
<link rel="preconnect" href="https://nominatim.openstreetmap.org/reverse" />
<link rel="preconnect" href="https://api.open-meteo.com/v1/forecast" />
<link rel="preconnect" href="https://air-quality-api.open-meteo.com/v1/air-quality" />
<meta property="og:title" content="Aero Weather" />
<meta property="og:description" content="Weather app with a Windows Aero inspired design." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://aero-weather.piotrp.dev/preview.png" />
<meta property="og:image:alt" content="Aero Weather: Weather app with a Windows Aero inspired design." />
<meta property="og:image:width" content="1631" />
<meta property="og:image:height" content="861" />
<meta property="og:url" content="https://aero-weather.piotrp.dev" />
<meta name="twitter:title" content="Aero Weather" />
<meta name="twitter:description" content="Weather app with a Windows Aero inspired design." />
<meta name="twitter:url" content="https://aero-weather.piotrp.dev" />
<meta name="twitter:image:src" content="https://aero-weather.piotrp.dev/preview.png" />
<meta name="twitter:image:alt" content="Aero Weather: Weather app with a Windows Aero inspired design." />
<meta name="twitter:image:width" content="1631" />
<meta name="twitter:image:height" content="861" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@piotrpdev" />
<meta name="twitter:site" content="@piotrpdev" />
<link rel="canonical" href="https://aero-weather.piotrp.dev" />
<!-- TODO: Make into PWA https://vite-pwa-org.netlify.app/ -->
<!-- <link rel="manifest" href="/mlwmanifest.json" /> -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>