-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
41 lines (39 loc) · 1.76 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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/Forkling_logo.png" />
<link rel="apple-touch-icon" href="/Forkling_logo.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#D6A228" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Forkling — Discover Open-Source Repos & LLMs</title>
<meta name="description" content="Explore open-source repositories, compare projects side-by-side, and discover open-source LLMs — all from one beautifully designed tool." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Forkling — Discover Open-Source Repos & LLMs" />
<meta property="og:description" content="Explore open-source repositories, compare projects, and discover open-source LLMs." />
<meta property="og:site_name" content="Forkling" />
<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;800&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet" />
<script>
// Prevent flash of wrong theme
(function () {
try {
var stored = localStorage.getItem('forkling_theme');
var shouldUseDark =
stored === 'dark' ||
(!stored &&
window.matchMedia('(prefers-color-scheme: dark)').matches);
if (shouldUseDark) {
document.documentElement.classList.add('dark');
}
} catch (_) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>