-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 1.86 KB
/
index.html
File metadata and controls
74 lines (69 loc) · 1.86 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/aws-icon.svg?v=2" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AWS User Groups</title>
<!-- Critical CSS for loader - prevents FOUC -->
<style>
/* Hide root until app is ready */
#root {
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
#root.app-ready {
opacity: 1;
}
/* Loader container */
#app-loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}
#app-loader.loader-hidden {
opacity: 0;
visibility: hidden;
}
/* Spinning circle */
.loader-spinner {
width: 50px;
height: 50px;
border: 4px solid #f3f3f3;
border-top: 4px solid #ff9900;
border-radius: 50%;
animation: spin 1s linear infinite;
}
/* Optional loader text */
.loader-text {
margin-top: 16px;
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
color: #1C1C1C;
letter-spacing: 0.5px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<!-- Loading screen -->
<div id="app-loader">
<div class="loader-spinner"></div>
<p class="loader-text">Loading...</p>
</div>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>