Skip to content

Commit 2dd8a18

Browse files
Add GitHub Pages landing page with redirect to repository
- Create index.html in root to fix 404 error - Auto-redirects to GitHub repo where full README is visible - Provides manual link as fallback - Fixes: https://misscrispencakes.github.io/On-body-haptics/
1 parent 9fb0096 commit 2dd8a18

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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+
<meta http-equiv="refresh" content="0; url=https://github.com/MissCrispenCakes/On-body-haptics">
7+
<title>On-Body Haptics - Open Source Wearable Haptic Feedback Systems</title>
8+
<style>
9+
body {
10+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
11+
display: flex;
12+
justify-content: center;
13+
align-items: center;
14+
min-height: 100vh;
15+
margin: 0;
16+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
17+
color: white;
18+
}
19+
.container {
20+
text-align: center;
21+
padding: 2rem;
22+
max-width: 600px;
23+
}
24+
h1 {
25+
font-size: 2.5rem;
26+
margin-bottom: 1rem;
27+
}
28+
p {
29+
font-size: 1.2rem;
30+
margin-bottom: 2rem;
31+
opacity: 0.95;
32+
}
33+
.button {
34+
display: inline-block;
35+
padding: 12px 24px;
36+
background: white;
37+
color: #667eea;
38+
text-decoration: none;
39+
border-radius: 6px;
40+
font-weight: 600;
41+
transition: transform 0.2s;
42+
}
43+
.button:hover {
44+
transform: translateY(-2px);
45+
}
46+
.spinner {
47+
margin-top: 2rem;
48+
opacity: 0.7;
49+
}
50+
</style>
51+
</head>
52+
<body>
53+
<div class="container">
54+
<h1>🎮 On-Body Haptics</h1>
55+
<p>Open-source wearable haptic feedback systems for spatial audio, VR/AR, and interactive installations</p>
56+
<p>Redirecting to the project repository...</p>
57+
<a href="https://github.com/MissCrispenCakes/On-body-haptics" class="button">View Project on GitHub</a>
58+
<div class="spinner"></div>
59+
</div>
60+
</body>
61+
</html>

0 commit comments

Comments
 (0)