-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
69 lines (66 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3630954887749456"
crossorigin="anonymous"
></script>
<meta
name="description"
content="Check the weather data from all around the globe."
/>
<meta
name="keywords"
content="weather forecast,weather,forecast,wind direction,climate,clouds,meteorology,precipitation"
/>
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="canonical" href="https://geoweather.davidhuertas.dev" />
<meta name="robots" content="index, nofollow" />
<title>GeoWeather</title>
<meta property="og:type" content="website" />
<meta property="og:title" content="GeoWeather" />
<meta
property="og:description"
content="☀️Check the weather data from all around the globe 🌍. Up to two weeks of forecast. Wind direction, clouds, precipitation, temperature, humidity, pressure, and more."
/>
<meta
name="image"
property="og:image"
content="https://geoweather.davidhuertas.dev/banner.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="600" />
<meta property="og:url" content="https://geoweather.davidhuertas.dev" />
<meta property="og:site_name" content="GeoWeather" />
<meta name="author" content="David Huertas" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GeoWeather" />
<meta
name="twitter:description"
content="Check the weather data from all around the globe."
/>
<meta
name="twitter:image"
content="https://geoweather.davidhuertas.dev/banner.png"
/>
<meta name="twitter:image:alt" content="GeoWeather" />
<meta name="twitter:creator" content="@ikurotime" />
<script>
window.myCallbackFunc = function () {
window.initOne && window.initOne()
}
</script>
<script
defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC9792weT6nDvmOoMjmagr7ybocOXLd6dU&language=en&components=locality&libraries=places&callback=myCallbackFunc"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>