-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
52 lines (44 loc) · 1.96 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" />
<meta name="theme-color" content="#0a0a0a" />
<meta name="description" content="Transform messy thoughts into professional Markdown instantly. Generate README, PR, issues, and more with AI-powered local conversion." />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="GitHub Helper - Markdown Generator" />
<meta property="og:description" content="Transform messy thoughts into professional Markdown instantly" />
<meta property="og:image" content="/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GitHub Helper - Markdown Generator" />
<meta name="twitter:description" content="Transform messy thoughts into professional Markdown instantly" />
<!-- PWA -->
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<!-- Preconnect for fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Font display swap -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<title>GitHub Helper | Markdown Generator</title>
<!-- Error handling for older browsers -->
<script>
// Check for basic ES6 support
(function() {
try {
new Map();
eval('const x = () => {}');
} catch (e) {
document.documentElement.classList.add('no-js');
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>