62 lines
2.1 KiB
HTML
62 lines
2.1 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>SteelBase - Análise de Qualidade Industrial com IA</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<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=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;700;800&display=swap"
|
|
rel="stylesheet">
|
|
<script>
|
|
// Initialize theme from localStorage to prevent flash of unstyled content
|
|
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
document.documentElement.classList.add('dark')
|
|
} else {
|
|
document.documentElement.classList.remove('dark')
|
|
}
|
|
tailwind.config = {
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
display: ['Outfit', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
glass: {
|
|
100: 'rgba(255, 255, 255, 0.1)',
|
|
200: 'rgba(255, 255, 255, 0.2)',
|
|
300: 'rgba(255, 255, 255, 0.3)',
|
|
dark: 'rgba(15, 23, 42, 0.6)',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"react/": "https://aistudiocdn.com/react@^19.2.0/",
|
|
"react": "https://aistudiocdn.com/react@^19.2.0",
|
|
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.29.1",
|
|
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
|
|
"html2canvas": "https://aistudiocdn.com/html2canvas@^1.4.1",
|
|
"jspdf": "https://aistudiocdn.com/jspdf@^3.0.3"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body
|
|
class="bg-slate-100 dark:bg-slate-900 text-slate-900 dark:text-slate-100 transition-colors duration-300 font-sans">
|
|
<div id="root"></div>
|
|
<script type="module" src="/index.tsx"></script>
|
|
</body>
|
|
|
|
</html> |