-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.41 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
<!DOCTYPE html>
<html lang="es">
<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>MiTienda Caja Inventarios</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'primary': '#1e40af',
'secondary': '#1d4ed8',
'accent': '#3b82f6',
'neutral': '#1f2937',
'base-100': '#ffffff',
'info': '#2563eb',
'success': '#16a34a',
'warning': '#facc15',
'error': '#dc2626',
}
}
}
}
</script>
<script type="importmap">
{
"imports": {
"recharts": "https://aistudiocdn.com/recharts@^3.2.1",
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-gray-100">
<div id="root"></div>
<audio id="scan-beep" src="https://actions.google.com/sounds/v1/alarms/beep_short.ogg" preload="auto"></audio>
<script src="https://unpkg.com/html5-qrcode" type="text/javascript"></script>
<script type="module" src="/index.tsx"></script>
</body>
</html>