mirror of
https://github.com/graphql-hive/console
synced 2026-04-27 01:17:16 +00:00
28 lines
827 B
HTML
28 lines
827 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="preconnect" href="https://rsms.me/" />
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
media="(prefers-color-scheme: light)"
|
|
href="/just-logo-dark.svg"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
media="(prefers-color-scheme: dark)"
|
|
href="/just-logo.svg"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hive Console</title>
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
<script src="/__env.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="font-sans text-white" id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|