-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (104 loc) · 3.61 KB
/
index.html
File metadata and controls
105 lines (104 loc) · 3.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>TabSense AI</title>
<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@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
'bg-primary': '#111827', // Darker blue-gray
'bg-secondary': '#1F2937', // Lighter surface color
'brand-primary': '#4f46e5',
'brand-secondary': '#3b82f6',
'brand-accent': '#818cf8',
'text-primary': '#f9fafb',
'text-secondary': '#9ca3af',
'bubble-user': '#4f46e5',
'bubble-ai-start': '#3b82f6',
'bubble-ai-end': '#6366f1',
'glass-border': 'rgba(255, 255, 255, 0.1)',
'glass-bg': 'rgba(31, 41, 55, 0.5)',
},
animation: {
'subtle-pulse': 'subtle-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'fade-in': 'fade-in 0.5s ease-out forwards',
'slide-in-up': 'slide-in-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards',
'thinking-dots': 'thinking-dots 1.4s infinite ease-in-out both',
'gradient-pan': 'gradient-pan 3s ease infinite',
},
keyframes: {
'subtle-pulse': {
'0%, 100%': { boxShadow: '0 0 0 0 rgba(59, 130, 246, 0.4)' },
'50%': { boxShadow: '0 0 0 10px rgba(59, 130, 246, 0)' },
},
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
'slide-in-up': {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
'thinking-dots': {
'0%, 80%, 100%': { transform: 'scale(0)' },
'40%': { transform: 'scale(1.0)' },
},
'gradient-pan': {
'0%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
}
}
}
}
}
</script>
<style>
body {
width: 500px;
min-height: 550px;
max-height: 600px;
overflow-y: auto;
font-family: 'Inter', sans-serif;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #4a5568;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #718096;
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.24.0"
}
}
</script>
</head>
<body class="bg-bg-primary text-text-primary antialiased">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>