-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 2.12 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 2.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-eval' blob:; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' http://localhost:* ws://localhost:*; frame-src 'self' blob:; media-src 'self' blob: data: http://localhost:*; worker-src 'self' blob:;">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="AI-powered interview practice application. Private, local, and professional." />
<meta name="theme-color" content="#ffffff" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<title>Interviewer</title>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #ffffff;
color: #1a1a1a;
}
#root {
display: flex;
flex-direction: column;
height: 100vh;
}
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
background-color: #ffffff;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top-color: #2563eb; /* Blue-600 */
animation: spin 1s ease-in-out infinite;
margin-bottom: 16px;
}
.loading-text {
font-size: 14px;
color: #6b7280; /* Gray-500 */
font-weight: 500;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="root">
<div class="loading-container">
<div class="spinner"></div>
<div class="loading-text">Loading Interviewer...</div>
</div>
</div>
<script type="module" src="/src/ui/main.tsx"></script>
</body>
</html>