Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions cwc/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Redirecting to Coffee with CodeCell...</title>
<meta http-equiv="refresh" content="0; url=https://lu.ma/zpwy06qh" />
<link rel="canonical" href="https://lu.ma/zpwy06qh" />
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.redirect-message {
text-align: center;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script>
// JavaScript redirect as backup
window.location.replace("https://lu.ma/zpwy06qh");
</script>
</head>
<body>
<div class="redirect-message">
<h2>Redirecting to Coffee with CodeCell...</h2>
<div class="spinner"></div>
<p>
If you are not redirected automatically,
<a href="https://lu.ma/zpwy06qh">click here</a>.
</p>
</div>
</body>
</html>