mirror of
https://github.com/mark3labs/kit.git
synced 2026-06-13 19:20:06 +00:00
25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Kit Documentation</title>
|
|
<link rel="icon" href="/logo.jpg" type="image/jpeg" />
|
|
<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=Space+Grotesk:wght@300;400;500;600;700&family=Source+Code+Pro:wght@400;500;600&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="./styles/custom.css" />
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { -webkit-font-smoothing: antialiased; }
|
|
::-webkit-scrollbar { width: 6px; height: 6px; }
|
|
::-webkit-scrollbar-track { background: transparent; }
|
|
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="tome-root"></div>
|
|
<script type="module" src="./.tome/entry.tsx"></script>
|
|
</body>
|
|
</html>
|