-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.77 KB
/
index.html
File metadata and controls
42 lines (36 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en" style="background-color: #1A1F2B;">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#f59e0b" />
<meta name="description" content="AI-powered learning platform with study groups, code assistance, and interactive modules" />
<title>StudyBuddy★ - AI-Powered Learning Platform</title>
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>" type="image/svg+xml">
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icon-192x192.png" />
<style>
/* Force dark background on HTML and body */
html, body, #root {
background-color: #1A1F2B !important;
margin: 0;
padding: 0;
min-height: 100vh;
width: 100%;
color: #FFFFFF;
}
</style>
</head>
<body style="background-color: #1A1F2B;">
<div id="root" style="background-color: #1A1F2B; min-height: 100vh;"></div>
<!-- IMPORTANT: DO NOT REMOVE THIS SCRIPT TAG OR THIS VERY COMMENT! -->
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>