-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 2.06 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 2.06 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
<!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" />
<!-- Primary meta -->
<title>JSON Diff Visualizer – Compare & Diff JSON Side-by-Side</title>
<meta name="description" content="Free online JSON diff tool. Paste two JSON documents and compare them side-by-side or unified. Highlights added, removed, and changed keys. No uploads, runs in the browser." />
<meta name="keywords" content="JSON diff, compare JSON, JSON comparison, diff tool, JSON validator, side-by-side diff" />
<meta name="author" content="JSON Diff Visualizer" />
<meta name="theme-color" content="#1a1a2e" />
<link rel="canonical" href="https://jsondiffs.de" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="JSON Diff Visualizer – Compare & Diff JSON Side-by-Side" />
<meta property="og:description" content="Free online JSON diff tool. Compare two JSON documents side-by-side or unified. Highlights changes. No uploads, runs in the browser." />
<meta property="og:url" content="https://jsondiffs.dev/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="JSON Diff Visualizer" />
<!-- Structured data (JSON-LD) for search engines -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "JSON Diff Visualizer",
"description": "Free online tool to compare and diff two JSON documents side-by-side or in unified view. Highlights added, removed, and modified keys. No data leaves your browser.",
"url": "https://jsondiffs.dev/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>