2025-12-11 11:25:26 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" class="dark">
|
2025-12-12 11:46:04 +01:00
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>SAS Analytics Dashboard</title>
|
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
|
<script>
|
|
|
|
|
tailwind.config = {
|
|
|
|
|
darkMode: 'class',
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
background: '#020617', // slate-950
|
|
|
|
|
surface: '#0f172a', // slate-900
|
|
|
|
|
border: '#1e293b', // slate-800
|
|
|
|
|
primary: '#6366f1', // indigo-500
|
|
|
|
|
secondary: '#64748b', // slate-500
|
2025-12-11 11:25:26 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-12-12 11:46:04 +01:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
/* Custom Scrollbar */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: #020617;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #334155;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #475569;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2025-12-11 11:25:26 +01:00
|
|
|
</head>
|
2025-12-12 11:46:04 +01:00
|
|
|
|
|
|
|
|
<body class="bg-background text-slate-200 antialiased overflow-y-auto">
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/index.tsx"></script>
|
|
|
|
|
</body>
|
|
|
|
|
|
2025-12-11 11:25:26 +01:00
|
|
|
</html>
|