-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (73 loc) · 3.65 KB
/
Copy pathindex.html
File metadata and controls
81 lines (73 loc) · 3.65 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oxEdit: ox_inventory item, weapon & shop editor</title>
<meta name="google-site-verification" content="akU5jRWXPI5eMHhbFRvcg1TJ4EP5-kHWEd8Nmnm0Qd8" />
<meta
name="description"
content="A free, in-browser editor for ox_inventory data files. Edit items, weapons, shops, crafting and stashes with non-destructive saves, bulk edits and image optimization. No upload, no install."
/>
<meta name="theme-color" content="#2cb5a4" />
<link rel="canonical" href="https://oxedit.vercel.app/" />
<!-- Icons & PWA -->
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="oxEdit" />
<meta property="og:title" content="oxEdit: ox_inventory item, weapon & shop editor" />
<meta
property="og:description"
content="A free, in-browser editor for ox_inventory items, weapons, shops, crafting and stashes. Non-destructive edits, bulk actions and image optimization, and your files never leave your computer."
/>
<meta property="og:url" content="https://oxedit.vercel.app/" />
<meta property="og:image" content="https://oxedit.vercel.app/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="oxEdit: ox_inventory item, weapon & shop editor" />
<meta
name="twitter:description"
content="A free, in-browser editor for ox_inventory items, weapons, shops, crafting and stashes. Non-destructive edits, no upload, no install."
/>
<meta name="twitter:image" content="https://oxedit.vercel.app/og-image.png" />
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "oxEdit",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"url": "https://oxedit.vercel.app/",
"description": "A free, in-browser editor for ox_inventory data files. Edit items, weapons, shops, crafting and stashes with non-destructive saves, bulk edits and image optimization.",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<noscript>
<div style="max-width: 640px; margin: 4rem auto; padding: 0 1.5rem; font-family: sans-serif; line-height: 1.6;">
<h1>oxEdit: ox_inventory item, weapon & shop editor</h1>
<p>
oxEdit is a free, in-browser editor for
<a href="https://github.com/overextended/ox_inventory">ox_inventory</a> data files. Edit items,
weapons, shops, crafting and stashes, optimize item images, and export, all without uploading
your files anywhere. JavaScript is required to run the editor.
</p>
</div>
</noscript>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>