Skip to content

Commit cfe7ae3

Browse files
authored
feat: add index.html for Coffee with CodeCell redirect (#152)
1 parent 7f78d75 commit cfe7ae3

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

cwc/index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Redirecting to Coffee with CodeCell...</title>
7+
<meta http-equiv="refresh" content="0; url=https://lu.ma/zpwy06qh" />
8+
<link rel="canonical" href="https://lu.ma/zpwy06qh" />
9+
<style>
10+
body {
11+
font-family: Arial, sans-serif;
12+
display: flex;
13+
justify-content: center;
14+
align-items: center;
15+
height: 100vh;
16+
margin: 0;
17+
background-color: #f0f0f0;
18+
}
19+
.redirect-message {
20+
text-align: center;
21+
padding: 20px;
22+
background: white;
23+
border-radius: 8px;
24+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
25+
}
26+
.spinner {
27+
border: 4px solid #f3f3f3;
28+
border-top: 4px solid #3498db;
29+
border-radius: 50%;
30+
width: 40px;
31+
height: 40px;
32+
animation: spin 1s linear infinite;
33+
margin: 20px auto;
34+
}
35+
@keyframes spin {
36+
0% {
37+
transform: rotate(0deg);
38+
}
39+
100% {
40+
transform: rotate(360deg);
41+
}
42+
}
43+
a {
44+
color: #3498db;
45+
text-decoration: none;
46+
}
47+
a:hover {
48+
text-decoration: underline;
49+
}
50+
</style>
51+
<script>
52+
// JavaScript redirect as backup
53+
window.location.replace("https://lu.ma/zpwy06qh");
54+
</script>
55+
</head>
56+
<body>
57+
<div class="redirect-message">
58+
<h2>Redirecting to Coffee with CodeCell...</h2>
59+
<div class="spinner"></div>
60+
<p>
61+
If you are not redirected automatically,
62+
<a href="https://lu.ma/zpwy06qh">click here</a>.
63+
</p>
64+
</div>
65+
</body>
66+
</html>

0 commit comments

Comments
 (0)