Files
omnisupport-ai/index.html
2026-02-18 10:36:14 +01:00

71 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OmniSupport AI</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
brand: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
900: '#0c4a6e',
}
}
}
}
}
</script>
<style>
body { font-family: 'Inter', sans-serif; background-color: #f3f4f6; }
/* Custom scrollbar for chat */
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
<!-- Importmap rimossa per permettere a Vite di gestire le dipendenze React/Markdown dal package.json -->
<script type="importmap">
{
"imports": {
"react-markdown": "https://esm.sh/react-markdown@^10.1.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.4",
"@google/genai": "https://esm.sh/@google/genai@^1.41.0",
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"path": "https://esm.sh/path@^0.12.7",
"lucide-react": "https://esm.sh/lucide-react@^0.574.0",
"express": "https://esm.sh/express@^5.2.1",
"mysql2/": "https://esm.sh/mysql2@^3.17.2/",
"multer": "https://esm.sh/multer@^2.0.2",
"cors": "https://esm.sh/cors@^2.8.6",
"fs": "https://esm.sh/fs@^0.0.1-security",
"url": "https://esm.sh/url@^0.11.4",
"vite": "https://esm.sh/vite@^7.3.1",
"dotenv": "https://esm.sh/dotenv@^17.3.1",
"crypto": "https://esm.sh/crypto@^1.0.1"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>