-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
52 lines (45 loc) · 2.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>WEDE | Web Development Environment</title>
<!-- SEO -->
<meta name="description" content="WEDE — a lightweight, self-hosted web IDE. Single binary. No cloud required. Code from anywhere." />
<meta name="author" content="Vulos" />
<meta name="keywords" content="IDE, web IDE, code editor, self-hosted, terminal, developer tools" />
<!-- Open Graph -->
<meta property="og:title" content="WEDE | Web Development Environment" />
<meta property="og:description" content="A lightweight, self-hosted web IDE. Single binary. No cloud required." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://wede.vulos.org" />
<meta property="og:image" content="/icon-180.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="WEDE | Web Development Environment" />
<meta name="twitter:description" content="A lightweight, self-hosted web IDE. Single binary. No cloud required." />
<meta name="twitter:image" content="/icon-180.png" />
<!-- Icons -->
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/icon-180.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Mobile -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="WEDE" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="WEDE" />
<!-- Theme color -->
<meta name="theme-color" content="#0a0f1a" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#f1f5f9" media="(prefers-color-scheme: light)" />
<!-- Fonts -->
<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=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>