-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (86 loc) · 3.66 KB
/
Copy pathindex.html
File metadata and controls
97 lines (86 loc) · 3.66 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
85
86
87
88
89
90
91
92
93
94
95
96
97
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary on-page SEO -->
<title>JSON Data Builder - Build, Edit & Export JSON Online</title>
<meta
name="description"
content="A free online JSON builder. Add properties with names, values, and types (string, number, boolean, array) to construct structured JSON objects. Live preview, import, and export."
/>
<meta
name="keywords"
content="JSON builder, JSON editor, JSON generator, online JSON tool, build JSON, export JSON, JSON formatter"
/>
<meta name="author" content="art70x" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#29de9c" />
<meta name="application-name" content="JSON Data Builder" />
<link rel="canonical" href="https://json-b.vercel.app/" />
<!-- Open Graph (social sharing / off-page) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="JSON Data Builder - Build, Edit & Export JSON Online" />
<meta
property="og:description"
content="Visually construct JSON objects and arrays with typed properties. Live preview, drag-to-reorder, import/export, and save named datasets."
/>
<meta property="og:image" content="https://json-b.vercel.app/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="JSON Data Builder interface showing structured JSON creation"
/>
<meta property="og:url" content="https://json-b.vercel.app/" />
<meta property="og:site_name" content="JSON Data Builder" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card (off-page) -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="JSON Data Builder - Build, Edit & Export JSON Online" />
<meta
name="twitter:description"
content="Visually construct JSON objects and arrays with typed properties. Live preview, drag-to-reorder, import/export, and save named datasets."
/>
<meta name="twitter:image" content="https://json-b.vercel.app/og-image.png" />
<meta name="twitter:creator" content="@art70x" />
<!-- Structured data / JSON-LD (off-page, rich results) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "JSON Data Builder",
"url": "https://json-b.vercel.app/",
"description": "A free progressive web app to visually build, edit, and export structured JSON objects and arrays with typed properties.",
"applicationCategory": "DeveloperApplication",
"applicationSubCategory": "JSON Editor",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript. Works in modern browsers.",
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Visual JSON object builder",
"Typed properties (string, number, boolean, array)",
"Nested JSON support",
"Live syntax-highlighted preview",
"Import existing JSON files",
"Export JSON files",
"Save and load datasets",
"Drag-to-reorder objects"
],
"softwareVersion": "1.0",
"author": {
"@type": "Person",
"name": "art70x"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>