-
Notifications
You must be signed in to change notification settings - Fork 627
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 942 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="application-name" content="geojson.io" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#000000" />
<link rel="preconnect" href="https://api.mapbox.com/" />
<link rel="icon" href="https://static-assets.mapbox.com/branding/favicon/v2/favicon-32x32.png?v=gAd4JjrGWl" />
<link rel="manifest" href="/manifest.json" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Code+Pro&family=Open+Sans:wght@400;700;800&display=swap"
rel="stylesheet"
/>
<!-- Add segment tracking for tool usage -->
<script src="https://docs.mapbox.com/analytics.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="./pages/index.tsx"></script>
</body>
</html>