-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 3.03 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 3.03 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-site-verification" content="YnAWNAox1EjxvFbayOGj4ZP-ntuPf7YC1rNpHoe5gMA" />
<!-- Resource Pre-fetching -->
<link rel="preload" href="/data/bmtc_stops.json" as="fetch" crossorigin="anonymous">
<link rel="preload" href="/data/metro_stops.json" as="fetch" crossorigin="anonymous">
<link rel="preload" href="/data/bmtc_routes.json" as="fetch" crossorigin="anonymous">
<!-- Primary SEO -->
<title>Namma Route | Namma BMTC Online - Bangalore Bus Route Navigator</title>
<meta name="description" content="Namma Route: The ultimate BMTC bus navigator for Bengaluru. Find the fastest 'Namma BMTC Online' routes and Bangalore bus schedules across the city." />
<meta name="keywords" content="Namma BMTC Online, Bangalore bus route, BMTC 378 Route, Namma Route, transit app, Wipro Gate, Cubbon Park, Bangalore transit" />
<meta name="author" content="Kanak Megha" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://blr-bus-network.vercel.app/" />
<meta property="og:title" content="Namma Route: Namma BMTC Online & Bangalore Bus Navigator" />
<meta property="og:description" content="The ultimate data-driven bus and metro navigator for Bangalore. Get 'Namma BMTC Online' routes and 378 bus schedules." />
<meta property="og:image" content="https://blr-bus-network.vercel.app/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://blr-bus-network.vercel.app/" />
<meta property="twitter:title" content="Namma Route: Bangalore's AI-Powered Route Finder" />
<meta property="twitter:description" content="Find the best BMTC bus routes in Bangalore including the 378 route with our official schedule tables." />
<meta property="twitter:image" content="https://blr-bus-network.vercel.app/og-image.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Namma Route",
"url": "https://blr-transport.vercel.app/",
"operatingSystem": "All",
"applicationCategory": "TravelApplication",
"description": "Professional transit routing tool for Bengaluru using the RAPTOR algorithm.",
"author": {
"@type": "Person",
"name": "Kanak Megha",
"url": "https://kanak-megha-portfolio.vercel.app/"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "INR"
}
}
</script>
<script
src="https://maps.googleapis.com/maps/api/js?key=%VITE_GOOGLE_MAPS_API_KEY%&libraries=places"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>