-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 3.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Volt Lab - JavaScript Code Playground & Editor</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/jscpg.svg" />
<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="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Primary Meta Tags -->
<meta name="title" content="Volt Lab - JavaScript Code Playground & Editor">
<meta name="description" content="Free online JavaScript code editor and playground. Write, test, and debug JavaScript code in real-time with console output and error handling." />
<meta name="author" content="Xaypanya Phongsa" />
<meta name="keywords" content="JavaScript, code editor, playground, online editor, coding, web development, programming">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#ffffff">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://volt-lab.vercel.app/">
<meta property="og:site_name" content="Volt Lab">
<meta property="og:title" content="Volt Lab - JavaScript Code Playground & Editor">
<meta property="og:description" content="Free online JavaScript code editor and playground. Write, test, and debug JavaScript code in real-time with console output and error handling.">
<meta property="og:image" content="https://volt-lab.vercel.app/og-image.jpg">
<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:url" content="https://volt-lab.vercel.app/">
<meta name="twitter:title" content="Volt Lab - JavaScript Code Playground & Editor">
<meta name="twitter:description" content="Free online JavaScript code editor and playground. Write, test, and debug JavaScript code in real-time with console output and error handling.">
<meta name="twitter:image" content="https://volt-lab.vercel.app/og-image.jpg">
<!-- JSON-LD for rich snippets -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Volt Lab",
"description": "Free online JavaScript code editor and playground. Write, test, and debug JavaScript code in real-time with console output and error handling.",
"url": "https://volt-lab.vercel.app",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"author": {
"@type": "Person",
"name": "Xaypanya Phongsa"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>