-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
96 lines (88 loc) Β· 3.31 KB
/
features.html
File metadata and controls
96 lines (88 loc) Β· 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aton4ST</title>
<link rel="stylesheet" href="css/features.css">
</head>
<body>
<header>
<img src="img/aton4stlogo.jpg" alt="Aton4ST Logo" class="logo">
<button class="menu-toggle">β°</button>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Democratizing Space Science Through AI</h2>
<p>Empowering global understanding of climate and space data through intuitive AI tools</p>
</section>
<section class="feature-grid">
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>Climate Data Chatbot</h3>
<p>AI-powered natural language interface for Earth observation data queries</p>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>Interactive Data Viz</h3>
<p>Real-time 3D visualizations of climate patterns and space phenomena</p>
</div>
<div class="feature-card">
<div class="feature-icon">π€</div>
<h3>AI Analysis Tools</h3>
<p>Machine learning models for pattern detection in complex datasets</p>
</div>
<div class="feature-card">
<div class="feature-icon">π±</div>
<h3>Sustainability Tracking</h3>
<p>Monitor environmental impact metrics aligned with SDG goals</p>
</div>
</section>
<section class="dashboard">
<div class="chart-container">
<h2>Climate Data Trends</h2>
<canvas id="climateChart"></canvas>
</div>
<div class="chatbot-container">
<h2>Climate Data Assistant</h2>
<div class="chat-history" id="chatHistory">
<div class="message bot-message">Hello! Ask me about climate trends, satellite data, or space science concepts.</div>
</div>
<div class="chat-input">
<input type="text" id="userInput" placeholder="Type your question...">
<button id="sendButton">Send</button>
<div id="chatHistory"></div>
</div>
</div>
</section>
<section class="sustainability-panel">
<h2>Sustainability Progress</h2>
<div class="progress-tracker">
<div class="progress-item">
<div class="progress-circle">75%</div>
<p>SDG 8 Alignment</p>
</div>
<div class="progress-item">
<div class="progress-circle">68%</div>
<p>Carbon Reduction</p>
</div>
<div class="progress-item">
<div class="progress-circle">82%</div>
<p>Data Efficiency</p>
</div>
</div>
</section>
<footer>
<p>Β© 2025 Aton4ST. Bridging Space Science and Sustainability</p>
</footer>
<script src="js/features.js"></script>
</body>
</html>