forked from gtech-mulearn/campus-chapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (84 loc) · 3.43 KB
/
Copy pathindex.html
File metadata and controls
99 lines (84 loc) · 3.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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" />
<meta charset="UTF-8" />
<!-- ✅ SEO META TAGS ADDED BELOW -->
<title>µLearn MAMOC – Peer Learning at MAMO College</title>
<meta name="description" content="µLearn MAMOC is the official peer learning community of MAMO College. Join us to explore microlearning, earn Karma Points, and grow with your peers." />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://mulearn.mamocollege.org/" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="µLearn MAMOC – Peer Learning at MAMO College" />
<meta property="og:description" content="Join the µLearn movement at MAMO College – a peer-powered microlearning community for skill development." />
<meta property="og:image" content="https://mulearn.mamocollege.org/og-image.png" />
<meta property="og:url" content="https://mulearn.mamocollege.org/" />
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="µLearn MAMOC – Peer Learning at MAMO College" />
<meta name="twitter:description" content="Join µLearn MAMOC and build your skills through peer learning, tracks, and Karma Points." />
<meta name="twitter:image" content="https://mulearn.mamocollege.org/twitter-image.png" />
<!-- ✅ END OF SEO ADDITIONS -->
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
#overlay {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
left: 0;
gap: 10px;
}
#overlay::-webkit-scrollbar {
display: none;
color: white;
}
#overlay img {
width: 300px;
height: auto;
}
.progress {
width: 100.8px;
height: 16.8px;
border-radius: 16.8px;
background: repeating-linear-gradient(135deg, #FBBA16 0 8.4px, rgba(251, 186, 22, 0.5) 0 16.8px) left/0% 100% no-repeat,
repeating-linear-gradient(135deg, rgba(71, 75, 255, 0.2) 0 8.4px, rgba(71, 75, 255, 0.1) 0 16.8px) left/100% 100%;
animation: progress-p43u5e 3s infinite;
}
@keyframes progress-p43u5e {
100% {
background-size: 100% 100%;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script>
<script>
function hideOverlay() {
$('#overlay').hide();
}
$(window).on('load', function () {
hideOverlay();
});
setTimeout(hideOverlay, 3000);
</script>
</head>
<body>
<div id="overlay">
<div class="progress">
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>