Files
cyberduck/index.html
2026-03-09 16:43:24 +01:00

31 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cyberduck</title>
<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=Exo+2:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&family=Rajdhani:wght@400;600;700&family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script>
// If the page includes a fixed `.site-footer`, add a class to `body`
// so older browsers (without :has support) can still apply the
// `--site-footer-height` CSS variable via `body.has-fixed-footer`.
(function () {
try {
if (document.querySelector('.site-footer.fixed-bottom')) {
document.body.classList.add('has-fixed-footer')
}
} catch (e) {
// silent fail
}
})();
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>