console/packages/web/app/index.html
Kamil Kisiela f6cf71eb3d
web/app - Favicon for dark and light mode (#5678)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-16 09:55:44 +02:00

27 lines
787 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>GraphQL Hive</title>
<script src="/__env.js"></script>
</head>
<body>
<div class="bg-transparent font-sans text-white" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>