-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (68 loc) · 2.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Atmos - Weather App</title>
<meta
name="description"
content="Plan your day ahead with Atmos the Weather App."
/>
<link
rel="preload"
href="/fonts/weathericons-regular-webfont.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/fonts/weather-icons.min.css" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link
rel="alternate icon"
href="/favicon.ico"
type="image/x-icon"
sizes="32x32"
/>
<link rel="mask-icon" href="/favicon.svg" color="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://atmos.pages.dev/" />
<meta property="og:title" content="Atmos - Weather App" />
<meta property="og:site_name" content="Atmos - Weather App" />
<meta
property="og:description"
content="Plan your day ahead with Atmos the Weather App."
/>
<meta property="og:image" content="https://atmos.pages.dev/atmos.png" />
<meta property="og:image:alt" content="Anil Seervi" />
<meta property="og:image:height" content="1080" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1920" />
<!-- Twitter -->
<meta name="twitter:creator" content="@linASeervi" />
<meta name="twitter:creator:id" content="2496313362" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://atmos.pages.dev" />
<meta property="twitter:title" content="Atmos - Weather App" />
<meta
property="twitter:description"
content="Plan your day ahead with Atmos the Weather App."
/>
<meta
property="twitter:image"
content="https://atmos.pages.dev/atmos.png"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>