[3bc1b2]: / index.html

Download this file

158 lines (141 with data), 4.3 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COAST | ASL Translator</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
/* Dark Mode Background */
body {
background: linear-gradient(135deg, #0a0a0a, #121212);
color: #e0e0e0;
line-height: 1.6;
overflow-x: hidden;
}
/* Starfield */
.stars {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.star {
position: absolute;
width: 2px;
height: 2px;
background-color: white;
border-radius: 50%;
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
opacity: 0.8;
transition: opacity 0.5s, transform 0.5s ease-out;
}
/* Container */
.container {
width: 80%;
margin: auto;
max-width: 1200px;
padding: 20px;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-size: 1.8rem;
font-weight: 600;
color: #00bcd4;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
}
nav ul li a {
color: #e0e0e0;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s;
}
nav ul li a:hover {
color: #00bcd4;
}
/* Hero Section */
.hero {
text-align: center;
padding: 100px 20px;
}
.hero h1 {
font-size: 2.5rem;
color: #00bcd4;
}
.hero p {
font-size: 1.2rem;
margin-top: 10px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
/* Sections */
.section {
padding: 60px 0;
text-align: center;
}
.section h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #00bcd4;
}
footer {
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 40px;
}
footer p {
font-size: 0.9rem;
color: #b0b0b0;
}
</style>
</head>
<body>
<div class="stars"></div>
<div class="container">
</div>
<section class="hero">
<h1>COAST: Breaking Language Barriers</h1>
<p>Increasing the capabilities of AI-powered ASL translation with open-source technology.</p>
</section>
<div class="container">
<section class="section">
<h2>Our Mission</h2>
<p>COAST is a non-profit wristband project dedicated to bridging the gap between hearing and non-hearing individuals using hand-tracking sensors and AI.</p>
</section>
<section class="section">
<h2>How It Works</h2>
<p>Utilizing energy-efficient acoustic wave technology based on the EchoWrist project from researchers at Cornell University, COAST tracks hand movements and converts ASL into written language via Bluetooth.</p>
</section>
<section class="section">
<h2>Open-Source Commitment</h2>
<p>All hardware and software are published on GitHub, making it accessible for anyone to build and improve.</p>
</section>
</div>
<footer>
<p>&copy; 2025 COAST. Open-source for a more inclusive world.</p>
</footer>
<script src="star script.js"></script>
</body>
</html>