-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.3 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.3 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
<!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>Reflecta - Reflect. Heal. Connect.</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#A1C4FD', // Soft Blue
secondary: '#C2E9FB', // Light Sky Blue
accent: '#B8A1FD', // Lavender
// Light mode
background: '#F8FAFC', // Off White
'charcoal-grey': '#1E293B', // Charcoal Grey
// Dark mode
'dark-background': '#0F172A', // slate-900
'dark-card': '#1E293B', // slate-800
'dark-text': '#E2E8F0', // slate-200
'dark-subtext': '#94A3B8', // slate-400
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
}
</script>
<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 type="importmap">
{
"imports": {
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.9.4",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.545.0",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.24.0"
}
}
</script>
<style>
body {
background-image: url('https://res.cloudinary.com/darm86u7g/image/upload/v1760168261/Gemini_Generated_Image_yzu9g8yzu9g8yzu9_qxiuns.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
</style>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-background text-charcoal-grey dark:bg-dark-background dark:text-dark-text transition-colors duration-300">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>