-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (127 loc) · 4.3 KB
/
index.html
File metadata and controls
135 lines (127 loc) · 4.3 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevToolKit - Essential Developer Utilities & Tools</title>
<meta
name="description"
content="Free online developer tools including JSON formatter, UUID generator, Base64 converter, QR code generator, password generator, and more. Essential utilities for developers."
/>
<meta name="author" content="DevToolKit" />
<meta
name="keywords"
content="developer tools, JSON formatter, UUID generator, Base64 converter, QR code generator, password generator, regex tester, markdown viewer, hash generator, case converter, Lorem Ipsum, text tools, encoding tools, data format converter, 개발자 도구, JSON 포맷터, UUID 생성기"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://devtoolkit.mingrammer.com/" />
<meta
property="og:title"
content="DevToolKit - Essential Developer Utilities & Tools"
/>
<meta
property="og:description"
content="Free online developer tools including JSON formatter, UUID generator, Base64 converter, and more. Essential utilities for developers."
/>
<meta
property="og:image"
content="https://devtoolkit.mingrammer.com/og-image.png"
/>
<meta property="og:site_name" content="DevToolKit" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://devtoolkit.mingrammer.com/" />
<meta
name="twitter:title"
content="DevToolKit - Essential Developer Utilities & Tools"
/>
<meta
name="twitter:description"
content="Free online developer tools including JSON formatter, UUID generator, Base64 converter, and more."
/>
<meta
name="twitter:image"
content="https://devtoolkit.mingrammer.com/og-image.svg"
/>
<!-- Additional SEO -->
<link rel="canonical" href="https://devtoolkit.mingrammer.com/" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Language alternates -->
<link
rel="alternate"
hreflang="en"
href="https://devtoolkit.mingrammer.com/"
/>
<link
rel="alternate"
hreflang="ko"
href="https://devtoolkit.mingrammer.com/"
/>
<link
rel="alternate"
hreflang="x-default"
href="https://devtoolkit.mingrammer.com/"
/>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- GitHub Pages SPA Redirect -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// Redirect from query string back to route
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
})(window.location);
</script>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "DevToolKit",
"description": "Essential online developer utilities and tools",
"url": "https://devtoolkit.mingrammer.com",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"JSON Formatter/Validator",
"UUID Generator",
"Base64 Converter",
"QR Code Generator",
"Password Generator",
"Hash Generator",
"Regex Tester",
"Markdown Viewer",
"Case Converter",
"Lorem Ipsum Generator",
"Word Counter",
"Data Format Converters"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>