<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Google AI Studio App</title>
</head>
<body>
<div id="google_translate_element" style="display:none;"></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', autoDisplay: false}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import "tailwindcss";
@layer utilities {
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
}
@theme {
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}
@layer base {
body {
@apply bg-[#09090B] text-zinc-100 antialiased overflow-x-hidden;
top: 0 !important;
}
}
.skiptranslate {
display: none !important;
}
.prose {
@apply text-zinc-400 leading-relaxed;
}
.prose h1, .prose h2, .prose h3 {
@apply text-zinc-100 font-bold tracking-tight mt-8 mb-4;
}
.prose p {
@apply mb-4;
}
.prose ul {
@apply list-disc list-inside mb-4 space-y-2;
}
.prose strong {
@apply text-emerald-400 font-semibold;
}