-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (61 loc) · 2.42 KB
/
index.html
File metadata and controls
72 lines (61 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Pocket Gull is an advanced Practitioner Dashboard and Medical Analysis tool offering real-time AI consults, intuitive 3D visualization, and comprehensive medical charting.">
<title>Pocket Gull</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><g transform=%22translate(5, 5) scale(0.9)%22><path d=%22M45 30 L25 40 C 35 20, 40 10, 45 0 Z%22 fill=%22%23689F38%22/><path d=%22M45 30 L45 0 L38 30Z%22 fill=%22%23558B2F%22/><path d=%22M55 30 L75 40 C 65 20, 60 10, 55 0 Z%22 fill=%22%23689F38%22/><path d=%22M55 30 L55 0 L62 30Z%22 fill=%22%23558B2F%22/><rect x=%2225%22 y=%2235%22 width=%2250%22 height=%224%22 fill=%22%23689F38%22/></g></svg>">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #F8F8F8;
color: #1C1C1C;
}
html.dark body {
background-color: #09090b; /* zinc-950 */
color: #fafafa;
}
/* Minimalist scrollbar */
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #EEEEEE;
}
html.dark ::-webkit-scrollbar-thumb {
background: #3f3f46; /* zinc-700 */
}
::-webkit-scrollbar-thumb:hover {
background: #E0E0E0;
}
html.dark ::-webkit-scrollbar-thumb:hover {
background: #52525b; /* zinc-600 */
}
.body-viewer-container {
border-radius: 8px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
</style>
<link rel="manifest" href="manifest.webmanifest">
<meta name="theme-color" content="#1C1C1C">
<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="apple-mobile-web-app-title" content="Pocket Gull">
<link rel="apple-touch-icon" href="icons/icon-152x152.png">
</head>
<body>
<app-root></app-root>
<noscript>Please enable JavaScript to continue using this application.</noscript>
</body>
</html>