-
Notifications
You must be signed in to change notification settings - Fork 0
/
astar.html
309 lines (273 loc) · 9.93 KB
/
astar.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automation as a Service</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: #1c1c1c;
color: white;
min-height: 100vh;
overflow-x: hidden;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1rem;
}
/* Main Section */
.main-content {
min-height: 100vh;
display: flex;
flex-direction: column;
position: relative;
background-color: #1c1c1c;
}
/* Hero Section */
.hero {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem 1rem;
animation: fadeIn 2s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.hero h1 {
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.5rem;
color: #94a3b8;
margin-bottom: 2rem;
}
.button {
display: inline-flex;
align-items: center;
padding: 1.5rem 2rem;
background-color: #2563eb;
color: white;
border-radius: 0.5rem;
font-size: 1.125rem;
border: none;
cursor: pointer;
text-decoration: none;
transition: background-color 0.2s;
}
.button:hover {
background-color: #1d4ed8;
}
/* Features Section */
.features {
padding: 4rem 1rem;
margin-top: auto;
}
.features-grid {
display: flex;
gap: 1rem;
justify-content: center;
max-width: 1280px;
margin: 0 auto;
}
.feature-card {
flex: 1;
background-color: #252525;
padding: 2rem;
border-radius: 0.5rem;
text-align: center;
}
.feature-icon {
width: 4rem;
height: 4rem;
margin: 0 auto 1.5rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.feature-card p {
color: #94a3b8;
line-height: 1.5;
}
/* Trusted By Section */
.trusted-by {
width: 100%;
padding: 1rem 0;
/* background-color: #1e1e1e; */
overflow: hidden;
position: relative;
}
.trusted-by h2 {
text-align: center;
margin-bottom: 2rem;
color: #94a3b8;
font-size: 1.2rem;
}
.scroll-container {
display: flex;
animation: scroll 20s linear infinite;
gap: 4rem;
/* padding: 0 1rem; */
}
.company-icon {
flex: 0 0 auto;
/* width: 120px; */
height: 40px;
/* background-color: #94a3b8; */
border-radius: 4px;
opacity: 0.6;
}
.company-icon[alt="xCraft Drones"] {
background-color: #ffffff;
padding: 5px;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(calc(-120px * 6 - 4rem * 6)); }
}
/* Trust Indicators */
.trust {
padding: 2rem 1rem;
text-align: center;
background-color: #252525;
}
.trust-items {
display: flex;
justify-content: center;
gap: 2rem;
color: #94a3b8;
}
.trust-item {
display: flex;
align-items: center;
}
.trust-icon {
width: 1.5rem;
height: 1.5rem;
margin-right: 0.5rem;
}
/* Footer */
.footer {
padding: 2rem 1rem;
border-top: 1px solid #333;
text-align: center;
background-color: #252525;
}
.footer a {
color: #94a3b8;
text-decoration: none;
transition: color 0.2s;
}
.footer a:hover {
color: white;
}
@media (max-width: 768px) {
.features-grid {
flex-direction: column;
}
.hero h1 {
font-size: 2.5rem;
}
.trust-items {
flex-direction: column;
gap: 1rem;
}
}
</style>
</head>
<body>
<div class="main-content">
<div class="trusted-by">
<h2>Trusted by Industry Leaders</h2>
<div class="scroll-container">
<!-- Logos -->
<img src="mit-logo.png" alt="MIT" class="company-icon">
<img src="harvard-logo.png" alt="Harvard" class="company-icon">
<img src="xcraft-logo.png" alt="xCraft Drones" class="company-icon">
<img src="silent-ventures-logo.png" alt="Silent Ventures" class="company-icon">
<img src="harpoon-venture-logo.png" alt="Harpoon Ventures" class="company-icon">
<img src="bvvc-logo.svg" alt="BVVC" class="company-icon">
<!-- Duplicates for seamless loop -->
<img src="mit-logo.png" alt="MIT" class="company-icon">
<img src="harvard-logo.png" alt="Harvard" class="company-icon">
<img src="xcraft-logo.png" alt="xCraft Drones" class="company-icon">
<img src="silent-ventures-logo.png" alt="Silent Ventures" class="company-icon">
<img src="harpoon-venture-logo.png" alt="Harpoon Ventures" class="company-icon">
<img src="bvvc-logo.svg" alt="BVVC" class="company-icon">
</div>
</div>
<div class="hero">
<h1>Automation as a Service</h1>
<p>Instantly make your drone sentient with a camera</p>
<a href="https://calendar.app.google/wktFY5fMjNjYsNDR9" class="button">
Get Started
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ml-2">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
</div>
<div class="features">
<div class="features-grid">
<div class="feature-card">
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/>
<circle cx="12" cy="13" r="4"/>
</svg>
<h3>Advanced Vision</h3>
<p>State-of-the-art computer vision processing for real-time object detection and tracking.</p>
</div>
<div class="feature-card">
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.96-3.08 3 3 0 0 1-.34-5.58 2.5 2.5 0 0 1 1.32-4.24 2.5 2.5 0 0 1 1.98-3A2.5 2.5 0 0 1 9.5 2Z"/>
<path d="M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 14.5 2Z"/>
</svg>
<h3>AI-Powered</h3>
<p>Neural networks trained on millions of flight patterns.</p>
</div>
<div class="feature-card">
<svg class="feature-icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>
</svg>
<h3>Instant Setup</h3>
<p>Connect your drone in minutes with our simple API.</p>
</div>
</div>
</div>
</div>
<div class="trust">
<div class="trust-items">
<div class="trust-item">
<svg class="trust-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
</svg>
Enterprise-grade security
</div>
<div class="trust-item">
<svg class="trust-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"></circle>
<polyline points="12 6 12 12 16 14"></polyline>
</svg>
24/7 Support
</div>
</div>
</div>
<!-- <footer class="footer">
<a href="/about">About</a>
</footer> -->
</body>
</html>