-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (83 loc) · 2.71 KB
/
index.html
File metadata and controls
87 lines (83 loc) · 2.71 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
<!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, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#ffffff" />
<meta name="description" content="Digital Literacy for Rural India" />
<title>Rani</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
background: '#ffffff',
surface: '#f4f4f5',
primary: '#000000',
secondary: '#ffffff',
accent: '#000000',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
borderRadius: {
'xl': '0.75rem',
'2xl': '1rem',
'3xl': '1.5rem',
'4xl': '2rem',
},
boxShadow: {
'neobrutalism': '4px 4px 0px 0px rgba(0,0,0,1)',
'neobrutalism-sm': '2px 2px 0px 0px rgba(0,0,0,1)',
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f3f4f6;
/* Subtle dot pattern */
background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
background-size: 20px 20px;
}
/* Custom scrollbar hiding for clean mobile UI */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
/* Hide number input spinners (up/down arrows) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
</style>
<script type="importmap">
{
"imports": {
"recharts": "https://esm.sh/recharts@2.12.0?external=react,react-dom",
"react": "https://esm.sh/react@18.2.0",
"react/": "https://esm.sh/react@18.2.0/",
"react-dom": "https://esm.sh/react-dom@18.2.0",
"react-dom/": "https://esm.sh/react-dom@18.2.0/",
"lucide-react": "https://esm.sh/lucide-react@0.303.0?external=react,react-dom"
}
}
</script>
</head>
<body class="antialiased select-none flex justify-center min-h-screen">
<div id="root" class="w-full max-w-md bg-white min-h-screen relative flex flex-col border-x-2 border-black shadow-2xl"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>