-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.backup
More file actions
320 lines (291 loc) · 11.7 KB
/
index.html.backup
File metadata and controls
320 lines (291 loc) · 11.7 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Embodied AI with Cognition Layer (LLM) for Voice & Map Integration">
<meta name="author" content="">
<title>Hyperspec AI - Voice & Map Integration</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic"
rel="stylesheet"
type="text/css">
<!-- Custom styles for this template -->
<link href="css/landing-page.min.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-light bg-light static-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<h3>Hyperspec AI</h3>
</a>
<a class="btn btn-primary" href="#">Explore</a>
</div>
</nav>
<script type="text/javascript">
function sign_up(source) {
let base_url = "https://docs.google.com/forms/d/e/1FAIpQLSd0eMSv6q7OqzsMFmXLtqZY3Uh2MG3OpGsMMvagvQNeNCPBWw/viewform?usp=pp_url&entry.2085931885=";
if(source === "header") {
base_url += document.getElementById("header_email").value;
}
if(source === "footer") {
base_url += document.getElementById("footer_email").value;
}
window.open(
base_url,
'_blank'
);
}
</script>
<!-- Masthead -->
<header class="masthead text-white text-center">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-xl-9 mx-auto">
<h1 class="mb-5">Voice-Enabled Maps and Embodied AI</h1>
</div>
<div class="col-md-10 col-lg-8 col-xl-7 mx-auto">
<form>
<div class="form-row">
<div class="col-12 col-md-9 mb-2 mb-md-0">
<input type="email" id="header_email"
class="form-control form-control-lg"
placeholder="Enter your email...">
</div>
<div class="col-12 col-md-3">
<button type="submit"
onclick="sign_up('header'); return false;"
class="btn btn-block btn-lg btn-primary">
Sign up!
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</header>
<!-- Features / Highlights -->
<section class="features-icons bg-light text-center">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="icon-layers m-auto text-primary"></i>
</div>
<h3>Cognition Layer (LLM)</h3>
<p class="lead mb-0">
Harness a powerful large language model to process map metadata, sensor data, and domain-specific knowledge in real time, driving dynamic decision-making in complex environments.
</p>
</div>
</div>
<div class="col-lg-4">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="icon-screen-desktop m-auto text-primary"></i>
</div>
<h3>Embodied AI</h3>
<p class="lead mb-0">
Integrate visual, LiDAR, radar, and GPS data into a unified cognitive framework. Our software platform lets autonomous agents adapt, learn, and respond to real-world changes.
</p>
</div>
</div>
<div class="col-lg-4">
<div class="features-icons-item mx-auto mb-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="icon-check m-auto text-primary"></i>
</div>
<h3>Real-Time Sensor Fusion</h3>
<p class="lead mb-0">
Collect, refine, and integrate live sensor data to form high-fidelity 3D maps. Stay continuously updated with instant feedback loops for critical geospatial insights.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Key Value Propositions -->
<section class="features-icons bg-light text-center">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="mb-5">Key Value Propositions</h2>
</div>
<div class="col-lg-3">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="fas fa-users-cog m-auto text-primary"></i>
</div>
<h3>Generative Policies</h3>
<p class="lead mb-0">
Formulate adaptive guidelines and governance frameworks on the fly. Our platform orchestrates policy creation aligned with evolving operational and compliance requirements.
</p>
</div>
</div>
<div class="col-lg-3">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="fas fa-code m-auto text-primary"></i>
</div>
<h3>Generative Code</h3>
<p class="lead mb-0">
Accelerate development workflows through on-demand code generation. Integrate new features and automation scripts in record time via agentic AI-based suggestions.
</p>
</div>
</div>
<div class="col-lg-3">
<div class="features-icons-item mx-auto mb-5 mb-lg-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="fas fa-project-diagram m-auto text-primary"></i>
</div>
<h3>Workflow Orchestration</h3>
<p class="lead mb-0">
Streamline mission-critical processes with intelligent orchestration. Let our system handle complex task dependencies and scheduling for optimal productivity.
</p>
</div>
</div>
<div class="col-lg-3">
<div class="features-icons-item mx-auto mb-0 mb-lg-3">
<div class="features-icons-icon d-flex">
<i class="fas fa-robot m-auto text-primary"></i>
</div>
<h3>Agentic AI</h3>
<p class="lead mb-0">
Equip your applications with decision-making agents that autonomously learn, adapt, and take initiative. Achieve higher operational agility and better end-user experiences.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Who We Serve -->
<section class="showcase">
<div class="container-fluid p-0">
<div class="row no-gutters" style="background-color: black;">
<div class="col-12">
<h1 class="display-4 text-center my-5 py-5" style="color: white; font-weight: bold;">Who We Serve</h1>
</div>
</div>
<!-- Business Users Seeking Voice & Maps Integration -->
<div class="row no-gutters">
<div class="col-lg-6 order-lg-2 text-white showcase-img"
style="background-image: url('img/business-voice-maps.jpg');">
</div>
<div class="col-lg-6 order-lg-1 my-auto showcase-text">
<h2>Voice & Maps for Modern Enterprises</h2>
<p class="lead mb-0">
Our platform helps businesses leverage voice commands alongside advanced geospatial data to streamline operations, improve collaboration, and drive productivity. From dynamic site planning to real-time data analysis, we empower teams with powerful map-driven insights.
</p>
</div>
</div>
</div>
</section>
<!-- Technology Highlights -->
<section class="showcase">
<div class="row no-gutters" style="background-color: black;">
<div class="col-12">
<h1 class="display-4 text-center my-5 py-5" style="color: white; font-weight: bold;">Our Technology</h1>
</div>
</div>
<div class="container-fluid p-0">
<!-- Cognition Layer (LLM) ONLY -->
<div class="row no-gutters">
<div class="col-lg-6 order-lg-2 text-white showcase-img"
style="background-image: url('img/large-vision-model.jpg');">
</div>
<div class="col-lg-6 order-lg-1 my-auto showcase-text">
<h2>Cognition Layer (LLM)</h2>
<p class="lead mb-0">
Our large language model connects real-time map metadata with sensor data. This software-driven approach offers continuous insights and adaptive decision-making for complex tasks.
</p>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="call-to-action text-white text-center">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-xl-9 mx-auto">
<h2 class="mb-4">Ready to See Software-Driven Embodied AI in Action?</h2>
</div>
<div class="col-md-10 col-lg-8 col-xl-7 mx-auto">
<form>
<div class="form-row">
<div class="col-12 col-md-9 mb-2 mb-md-0">
<input type="email" id="footer_email"
class="form-control form-control-lg"
placeholder="Enter your email...">
</div>
<div class="col-12 col-md-3">
<button type="submit"
onclick="sign_up('footer');"
class="btn btn-block btn-lg btn-primary">
Sign up!
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer bg-light">
<div class="container">
<div class="row">
<div class="col-lg-6 h-100 text-center text-lg-left my-auto">
<ul class="list-inline mb-2">
<li class="list-inline-item">
<a href="about.html">About</a>
</li>
<li class="list-inline-item">⋅</li>
<li class="list-inline-item">
<a href="contact.html">Contact</a>
</li>
<li class="list-inline-item">⋅</li>
<li class="list-inline-item">
<a href="terms.html">Terms of Use</a>
</li>
<li class="list-inline-item">⋅</li>
<li class="list-inline-item">
<a href="privacy.html">Privacy Policy</a>
</li>
</ul>
<p class="text-muted small mb-4 mb-lg-0">© Hyperspec AI, 2024. All Rights Reserved.</p>
</div>
<div class="col-lg-6 h-100 text-center text-lg-right my-auto">
<ul class="list-inline mb-0">
<li class="list-inline-item mr-3">
<a href="https://www.linkedin.com/company/hyperspec-ai/">
<i class="fab fa-linkedin fa-2x fa-fw"></i>
</a>
</li>
<li class="list-inline-item mr-3">
<a href="https://www.facebook.com/hyperspecai">
<i class="fab fa-facebook fa-2x fa-fw"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fab fa-instagram fa-2x fa-fw"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>