-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Claude Code Workshop — On-Nex Training Portal</title>
<meta name="description" content="A hands-on workshop for learning Claude Code, with lessons tailored to your operating system.">
<meta name="author" content="On-Nex Training Portal" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Lovable" />
<meta name="twitter:image" content="https://storage.googleapis.com/gpt-engineer-file-uploads/yLj0gOsU7sSUld2CYylY1nwf9V02/social-images/social-1777478762298-ONNEX_logo-02.webp">
<meta property="og:title" content="Claude Code Workshop — On-Nex Training Portal">
<meta name="twitter:title" content="Claude Code Workshop — On-Nex Training Portal">
<meta property="og:description" content="A hands-on workshop for learning Claude Code, with lessons tailored to your operating system.">
<meta name="twitter:description" content="A hands-on workshop for learning Claude Code, with lessons tailored to your operating system.">
<meta property="og:image" content="https://storage.googleapis.com/gpt-engineer-file-uploads/yLj0gOsU7sSUld2CYylY1nwf9V02/social-images/social-1777478762298-ONNEX_logo-02.webp">
<!-- Apply persisted theme before React mounts to avoid a flash of the wrong theme. -->
<script>
(function () {
try {
var t = localStorage.getItem("vci.theme") || "system";
var prefersDark = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches;
var dark = t === "dark" || (t === "system" && prefersDark);
if (dark) document.documentElement.classList.add("dark");
document.documentElement.style.colorScheme = dark ? "dark" : "light";
} catch (e) { /* ignore */ }
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>