-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 3.46 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
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>RocketMoto.US - Discover Amazing Motorcycle Routes</title>
<meta name="title" content="RocketMoto.US - Discover Amazing Motorcycle Routes">
<meta name="description" content="Find the perfect roads for your next motorcycle adventure, share your favorite routes, and connect with fellow riders.">
<meta name="keywords" content="motorcycle, route, road, ride, adventure, route, map, share, connect, rider, community, social, network">
<meta name="author" content="RocketMoto.US">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://rocketmoto.us/">
<meta property="og:title" content="RocketMoto.US - Discover Amazing Motorcycle Routes">
<meta property="og:description" content="Find the perfect roads for your next motorcycle adventure, share your favorite routes, and connect with fellow riders.">
<meta property="og:image" content="https://rocketmoto.us/og-image.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://rocketmoto.us/">
<meta property="twitter:title" content="RocketMoto.US - Discover Amazing Motorcycle Routes">
<meta property="twitter:description" content="Find the perfect roads for your next motorcycle adventure, share your favorite routes, and connect with fellow riders.">
<meta property="twitter:image" content="https://rocketmoto.us/twitter-image.jpg">
<!-- Canonical URL -->
<link rel="canonical" href="https://rocketmoto.us/">
<!-- Additional Meta -->
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#4f46e5" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="RocketMoto" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512.png" />
<link rel="icon" type="image/png" href="/icon.png" />
<script>
try {
const theme = localStorage.getItem('theme') || 'light';
document.documentElement.classList.toggle('dark', theme === 'dark');
} catch (e) {}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RocketMoto.US</title>
<script id="adsense-script" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8932288265943816" crossorigin="anonymous"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(registration => {
console.log('ServiceWorker registration successful');
})
.catch(err => {
console.log('ServiceWorker registration failed: ', err);
});
});
}
</script>
</body>
</html>