-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (73 loc) · 4.53 KB
/
index.html
File metadata and controls
84 lines (73 loc) · 4.53 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-PNP9L5ZD");
</script>
<!-- End Google Tag Manager -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Domapus: ZIP Code Housing Data Map</title>
<meta name="description"
content="Interactive map showing ZIP-level housing data. Compare median prices, price per sqft, and days on market across 26,000+ U.S. ZIP codes.">
<meta name="author" content="Jasper Chen" />
<!-- SEO: Canonical Link -->
<link rel="canonical" href="https://jasperc2024.github.io/Domapus/" />
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
<link rel="preconnect" href="https://www.google-analytics.com" crossorigin />
<link rel="preconnect" href="https://basemaps.cartocdn.com" crossorigin />
<link rel="preconnect" href="https://tiles.basemaps.cartocdn.com" crossorigin />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Preload critical data -->
<link rel="preload" href="data/zip-data-lite.json" as="fetch" crossorigin />
<script>
(function () {
var liteUrl = new URL('data/zip-data-lite.json', document.baseURI).href;
window.__zipDataLitePromise = fetch(liteUrl)
.then(function (r) { if (!r.ok) throw new Error(r.status); return r.arrayBuffer(); })
.catch(function () { return null; });
})();
</script>
<!-- Favicon and Manifest links -->
<link rel="icon" href="/Logo.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Structured Data (JSON-LD) -->
<script
type="application/ld+json">{"@context":"https://schema.org","@graph":[{"@type":"Dataset","name":"Interactive U.S. Housing Data Analysis","description":"Aggregated Redfin and Zillow real estate data for 26,000+ US ZIP codes.","url":"https://jasperc2024.github.io/Domapus/","isAccessibleForFree":true,"license":"https://github.com/Jasperc2024/Domapus/blob/main/LICENSE.md","creator":{"@type":"Person","name":"Jasper Chen"},"spatialCoverage":{"@type":"Place","name":"United States"},"distribution":{"@type":"DataDownload","encodingFormat":"application/json","contentUrl":"https://jasperc2024.github.io/Domapus/data/zip-data.json"}},{"@type":"WebApplication","name":"Domapus","url":"https://jasperc2024.github.io/Domapus/","applicationCategory":"VisualizationTool","operatingSystem":"Web Browser","description":"Real-time ZIP-code-level housing data visualization tool exploring prices and inventory trends."}]}</script>
<!-- Open Graph / Social Media -->
<meta property="og:image" content="https://jasperc2024.github.io/Domapus/preview.png" />
<meta property="og:url" content="https://jasperc2024.github.io/Domapus/" />
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://jasperc2024.github.io/Domapus/preview.png" />
<meta name="twitter:creator" content="@Jasperwchen" />
<meta property="og:title" content="Domapus: ZIP Code Housing Data Map">
<meta name="twitter:title" content="Domapus: ZIP Code Housing Data Map">
<meta property="og:description"
content="Interactive map showing ZIP-level housing data. Compare median prices, price per sqft, and days on market across 26,000+ U.S. ZIP codes.">
<meta name="twitter:description"
content="Interactive map showing ZIP-level housing data. Compare median prices, price per sqft, and days on market across 26,000+ U.S. ZIP codes.">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PNP9L5ZD" height="0" width="0"
style="display: none; visibility: hidden"></iframe></noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>