-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
224 lines (197 loc) · 6.32 KB
/
about.html
File metadata and controls
224 lines (197 loc) · 6.32 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Aton4ST - Democratizing Space Science</title>
<style>
:root {
--space-dark: #0f172a;
--climate-blue: #38bdf8;
--earth-green: #4ade80;
--code-bg: #1e293b;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--space-dark);
color: white;
margin: 0;
line-height: 1.6;
}
header {
background: rgba(30, 41, 59, 0.95);
padding: 0.5rem 2rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
display: flex;
align-items: center;
gap: 2rem;
}
.aton-logo {
height: 50px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 1rem;
transition: color 0.3s ease;
}
nav a:hover {
color: var(--climate-blue);
}
main {
max-width: 1200px;
margin: 100px auto 40px;
padding: 0 20px;
}
h1, h2 {
background: linear-gradient(90deg, var(--climate-blue), var(--earth-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section {
background: #1e293b;
padding: 2rem;
border-radius: 10px;
margin: 2rem 0;
}
pre {
background: var(--code-bg);
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
margin: 1rem 0;
}
code {
font-family: 'Fira Code', monospace;
color: var(--climate-blue);
}
ul {
padding-left: 2rem;
margin: 1rem 0;
}
li {
margin: 0.5rem 0;
}
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.tech-card {
border-left: 3px solid var(--climate-blue);
padding-left: 1rem;
}
footer {
background: #1e293b;
padding: 2rem;
text-align: center;
}
</style>
</head>
<body>
<header>
<img src="img/aton4stlogo.jpg" alt="Aton4ST Logo" class="aton-logo">
<nav>
<a href="index.html">Home</a>
<a href="features.html">Features</a>
<a href="demo.html">Demo</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<h1>Aton4ST: Democratizing Earth Observation Data</h1>
<div class="section">
<h2>Project Mission</h2>
<p>We bridge the gap between complex space science data and public understanding through AI-powered tools, enabling global participation in climate research and space exploration.</p>
<h3>Core Technologies</h3>
<div class="tech-grid">
<div class="tech-card">
<h4>AI Climate Chatbot</h4>
<ul>
<li>Natural Language Processing</li>
<li>NASA/ESA Data Integration</li>
<li>Real-time Analytics</li>
</ul>
</div>
<div class="tech-card">
<h4>3D Data Visualization</h4>
<ul>
<li>WebGL Globe Renderer</li>
<li>Time-Series Animation</li>
<li>Interactive Heatmaps</li>
</ul>
</div>
<div class="tech-card">
<h4>Citizen Science Platform</h4>
<ul>
<li>Crowdsourced Analysis</li>
<li>Educational Modules</li>
<li>SDG Progress Tracking</li>
</ul>
</div>
</div>
</div>
<div class="section">
<h2>Technical Architecture</h2>
<ul>
<li>Visualization: Three.js/Chart.js</li>
<li>Cloud Infrastructure: AWS/GraniteAI</li>
<li>API Services: GraphQL/REST</li>
</ul>
</div>
<div class="section">
<h2>Getting Started</h2>
<pre><code>git clone https://github.com/aimtyaem/aton4st.git
cd aton4st
npm install
npm run dev</code></pre>
<h3>Dependencies</h3>
<ol>
<li>Javascript</li>
<li>Three.js</li>
<li>PostgreSQL 14+</li>
<li>GDAL 3.5+</li>
<li>Chart.js</li>
</ol>
</div>
<div class="section">
<h2>Open Science Commitment</h2>
<p>This project is licensed under the MIT <a href="https://opensource.org/license/MIT">LICENSE</a>. See the LICENSE file for more information.</p>
</div>
</main>
<footer>
<p>© 2025 Aton4ST Collective</p>
<p>Maintained by the Open Climate Science Alliance</p>
<div>
<a href="#privacy">Data Policy</a> |
<a href="#terms">Contribution Guidelines</a>
</div>
</footer>
<script>
// Smooth scroll for navigation
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Header scroll effect
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 100) {
header.style.background = 'rgba(30, 41, 59, 0.98)';
} else {
header.style.background = 'rgba(30, 41, 59, 0.95)';
}
});
</script>
</body>
</html>