-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
395 lines (351 loc) · 20 KB
/
index.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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global Metadata --><meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="preload" as="style" href="/styles/index.css">
<!-- Primary Meta Tags -->
<title>OPEN-ADAS | Make driving better</title>
<meta name="title" content="OPEN-ADAS | Make driving better">
<meta name="description" content="Application, hardware, tools for make your driving expirence better.">
<link rel="canonical" href="https://open-adas.com/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://open-adas.com/">
<meta property="og:title" content="OPEN-ADAS | Make driving better">
<meta property="og:description" content="Application, hardware, tools for make your driving expirence better.">
<meta property="og:image" content="https://open-adas.com/social.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://open-adas.com/">
<meta property="twitter:title" content="OPEN-ADAS | Make driving better">
<meta property="twitter:description" content="Application, hardware, tools for make your driving expirence better.">
<meta property="twitter:image" content="https://open-adas.com/social.png">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Source+Code+Pro:wght@500&display=swap" rel="stylesheet">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Roboto+Serif:[email protected]&family=Lato:[email protected]&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="https://fonts.googleapis.com/icon?family=Material+Icons" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Serif:[email protected]&family=Lato:[email protected]&display=swap" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
</noscript>
<link rel="stylesheet" href="/styles/index.css">
<!-- For Demonstration of the themes -->
<!-- Google Analytics -->
<link rel="stylesheet" href="/assets/index.d0344937.css" />
<link rel="stylesheet" href="/assets/c526c27b.d0705bca.css" />
<link rel="stylesheet" href="/assets/blog-posts-new-web-page-blog-index-blog-tags-_slug_-index.91f3acb8.css" /><script type="module" src="/hoisted.8cc1a9aa.js"></script></head>
<body>
<a href="#content" class="astro-33ITBZ4Q">Skip to main content</a>
<script type="module">
const bodyElement = document.querySelector('body');
const menuButton = document.querySelector('#menuButton')
const navHeader = document.querySelector('#odysseyNavHeader');
const menuButtonIcon = document.querySelector('#menuButtonIcon');
let scrollPosition = 0;
menuButton.addEventListener('click', toggleMenu)
function toggleMenu() {
if (navHeader.hasAttribute('mobile-menu-open', true)) {
menuButtonIcon.innerHTML = `menu`;
// unlock scroll position
bodyElement.style.removeProperty('overflow');
bodyElement.style.removeProperty('position');
bodyElement.style.removeProperty('top');
bodyElement.style.removeProperty('width');
window.scrollTo(0, scrollPosition);
} else {
menuButtonIcon.innerHTML = `close`;
// lock scroll position
scrollPosition = window.pageYOffset;
bodyElement.style.overflow = 'hidden';
bodyElement.style.position = 'fixed';
bodyElement.style.top = `-${scrollPosition}px`;
bodyElement.style.width = '100%';
}
navHeader.toggleAttribute('mobile-menu-open');
}
</script>
<header id="odysseyNavHeader" class="header--right astro-DZODZ3O3">
<div class="header-logo-menu__container astro-DZODZ3O3">
<button id="menuButton" class="astro-DZODZ3O3">
<span id="menuButtonIcon" class="material-icons astro-DZODZ3O3">menu</span>
</button>
<a class="header-logo__link astro-DZODZ3O3" href="/">
<span>
</span>
</a>
</div>
<div class="header-nav__container astro-DZODZ3O3">
<nav class="astro-DZODZ3O3">
<ul class="astro-DZODZ3O3">
<li class="astro-DZODZ3O3"><a href="/" class="astro-DZODZ3O3">Home</a></li><li class="astro-DZODZ3O3"><a href="/blog" class="astro-DZODZ3O3">Blog</a></li><li class="astro-DZODZ3O3"><a href="/company/career" class="astro-DZODZ3O3">Career</a></li><li class="astro-DZODZ3O3"><a href="/company/about" class="astro-DZODZ3O3">About</a></li><li class="astro-DZODZ3O3"><a href="/company/contact" class="astro-DZODZ3O3">Contact</a></li>
</ul>
</nav>
</div>
<div class="header-action-item__container astro-DZODZ3O3">
</div>
</header>
<main id="content">
<div id="page">
<div class="content__container astro-BYNT5YS5">
<section class="hero-section__section astro-EMZMVSNW">
<div class="hero-section__text astro-EMZMVSNW">
<h1 class="astro-EMZMVSNW">OPEN-ADAS</h1>
<p class="astro-EMZMVSNW">
Application, device and platform to improve the quality, comfort and safety of your driving.
</p>
<div class="hero-btns__container astro-EMZMVSNW">
<a class="btn undefined undefined undefined astro-I3SAKTAM" href="/products/automate">
Automate
<span class="material-icons astro-I3SAKTAM">chevron_right</span>
</a>
<a class="btn btn--unelevated undefined undefined astro-I3SAKTAM" href="/company/contact">
Contact for a demo
</a>
</div>
</div>
<div class="hero-section__image astro-EMZMVSNW">
<picture class="astro-EMZMVSNW">
<img src="/assets/images/home/logo_color_wb.png" alt="Logo" id="home-hero-image" class="astro-EMZMVSNW">
</picture>
</div>
</section>
</div>
<div class="content__container astro-BYNT5YS5">
<section class="feature-card__section astro-LIXC7ZA3">
<h2 class="astro-LIXC7ZA3">Automate</h2>
<p class="astro-LIXC7ZA3">
Get all the latest driver features on your phone.
</p>
<!--
<div class="feature-card__grid">
<FeatureCard
href="/company/about"
imgSrc="/assets/images/home/screenshots/about.png"
title="About Page"
/>
<FeatureCard
href="/company/contact"
imgSrc="/assets/images/home/screenshots/contact.png"
title="Contact Page"
/>
<FeatureCard
href="/blog/"
imgSrc="/assets/images/home/screenshots/blog.png"
title="Blog Page"
/>
<FeatureCard
href="/blog/posts/remote-work-mental-health"
imgSrc="/assets/images/home/screenshots/blog-post.png"
title="Blog Post"
/>
<FeatureCard
href="/company/legal"
imgSrc="/assets/images/home/screenshots/legal.png"
title="Legal Page"
/>
</div>
-->
</section>
</div><div class="content__container astro-BYNT5YS5">
<section class="feature-card__section astro-LIXC7ZA3">
<h2 class="astro-LIXC7ZA3">Latest blog posts</h2>
<p class="astro-LIXC7ZA3">
We are good at autonomous driving, we are good at trends, we see the future, we share it with you.
</p>
<ul class="blog-posts-list__list astro-D4FFLXIZ">
<li class="blog-post__preview astro-RVUQKGPY">
<a href="/blog/posts/new-web-page" class="astro-RVUQKGPY">
<img src="/assets/images/blog/new-web-page/social.png" class="astro-RVUQKGPY">
<h3 class="astro-RVUQKGPY">We have a new web page!</h3>
<p class="astro-RVUQKGPY">We anounce our new web page.</p>
</a>
</li>
</ul>
</section>
</div>
</div>
</main>
<footer style="--footer-bg:var(--theme-surface-1); --footer-color:var(--theme-on-surface-1)" class="astro-Z2S6F5KL">
<div class="content__container astro-BYNT5YS5">
<div class="footer-grid__container astro-Z2S6F5KL">
<div class="footer-brand__container astro-Z2S6F5KL">
<div class="astro-Z2S6F5KL">
</div>
<ul class="footer-socials__list astro-Z2S6F5KL">
<li class="footer-socials__item astro-Z2S6F5KL">
<a href="https://youtube.com/channel/UCtTnP2N39ZJtdKt9i5u7meg" target="_blank" rel="noopener noreferrer" class="footer-socials__link astro-Z2S6F5KL"><svg height="24" viewBox="0 0 72 72" width="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M36,72 L36,72 C55.882251,72 72,55.882251 72,36 L72,36 C72,16.117749 55.882251,-3.65231026e-15 36,0 L36,0 C16.117749,3.65231026e-15 -2.4348735e-15,16.117749 0,36 L0,36 C2.4348735e-15,55.882251 16.117749,72 36,72 Z" fill="#FF0002"/><path d="M31.044,42.269916 L31.0425,28.6877416 L44.0115,35.5022437 L31.044,42.269916 Z M59.52,26.3341627 C59.52,26.3341627 59.0505,23.003199 57.612,21.5363665 C55.7865,19.610299 53.7405,19.6012352 52.803,19.4894477 C46.086,19 36.0105,19 36.0105,19 L35.9895,19 C35.9895,19 25.914,19 19.197,19.4894477 C18.258,19.6012352 16.2135,19.610299 14.3865,21.5363665 C12.948,23.003199 12.48,26.3341627 12.48,26.3341627 C12.48,26.3341627 12,30.2467232 12,34.1577731 L12,37.8256098 C12,41.7381703 12.48,45.6492202 12.48,45.6492202 C12.48,45.6492202 12.948,48.9801839 14.3865,50.4470165 C16.2135,52.3730839 18.612,52.3126583 19.68,52.5135736 C23.52,52.8851913 36,53 36,53 C36,53 46.086,52.9848936 52.803,52.4954459 C53.7405,52.3821478 55.7865,52.3730839 57.612,50.4470165 C59.0505,48.9801839 59.52,45.6492202 59.52,45.6492202 C59.52,45.6492202 60,41.7381703 60,37.8256098 L60,34.1577731 C60,30.2467232 59.52,26.3341627 59.52,26.3341627 L59.52,26.3341627 Z" fill="#FFF"/></g></svg></a>
</li><li class="footer-socials__item astro-Z2S6F5KL">
<a href="https://crunchbase.com/organization/open-adas" target="_blank" rel="noopener noreferrer" class="footer-socials__link astro-Z2S6F5KL"><svg id="Layer_1"
data-name="Layer 1"
width="24" height="24" viewBox="0 0 64 64"
version="1.1"
sodipodi:docname="crunchbase-icon.svg"
style="fill:#ffffff"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata29">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>logo_crunchbase</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs27" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview25"
showgrid="false"
inkscape:zoom="5.1061711"
inkscape:cx="93.889999"
inkscape:cy="13.19"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<title
id="title2">logo_crunchbase</title>
<path
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#0a4063;fill-opacity:1;fill-rule:evenodd;stroke-width:0.10474632;stroke-linejoin:round;stroke-miterlimit:1.41400003"
d="m 64.000001,8.0000025 c 0,-4.41736 -3.58264,-8 -8,-8 H 7.9999985 c -4.41736,0 -8,3.58264 -8,8 V 55.999997 c 0,4.41736 3.58264,8 8,8 H 56.000001 c 4.41736,0 8,-3.58264 8,-8 z"
id="path7" />
<g
id="g871"
transform="matrix(2.3849106,0,0,2.3849106,-9.5449499,-43.547318)"
style="fill:#ffffff">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.57408553"
id="path6"
d="m 13.939838,33.65836 a 2.9622812,2.9622812 0 1 1 0.03444,-2.439863 h 2.296342 a 5.1667696,5.1667696 0 1 0 0,2.439863 h -2.296342 z" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.57408553"
id="path18"
d="m 23.510509,27.257306 h -0.378897 a 5.0978793,5.0978793 0 0 0 -2.525976,0.889833 v -5.752337 h -2.095412 v 14.794184 h 2.106894 v -0.539641 a 5.1667696,5.1667696 0 1 0 2.893391,-9.392039 z m 2.962281,5.534185 v 0.09185 a 2.9393178,2.9393178 0 0 1 -0.08037,0.361674 v 0 a 2.933577,2.933577 0 0 1 -0.143521,0.373156 v 0.04593 a 2.9795038,2.9795038 0 0 1 -2.072449,1.624662 v 0 l -0.281302,0.04593 h -0.06315 a 2.9163544,2.9163544 0 0 1 -0.321488,0 v 0 a 2.9622812,2.9622812 0 0 1 -0.40186,-0.02871 H 23.0168 a 2.933577,2.933577 0 0 1 -0.752052,-0.229634 h -0.05741 a 2.9737629,2.9737629 0 0 1 -0.66594,-0.447787 v 0 a 2.9909855,2.9909855 0 0 1 -0.522417,-0.625753 v 0 a 2.9622812,2.9622812 0 0 1 -0.189449,-0.367414 v 0 a 2.9450587,2.9450587 0 0 1 0.03445,-2.439864 v 0 a 2.9680221,2.9680221 0 0 1 2.376714,-1.68207 2.933577,2.933577 0 0 1 0.304265,0 v 0 a 2.9680221,2.9680221 0 0 1 2.927836,2.881909 v 0 a 2.9565404,2.9565404 0 0 1 0,0.396119 z" />
</g>
</svg></a>
</li><li class="footer-socials__item astro-Z2S6F5KL">
<a href="https://f6s.com/open-adas" target="_blank" rel="noopener noreferrer" class="footer-socials__link astro-Z2S6F5KL">
<svg
width="24"
height="24"
viewBox="0 0 64 64"
version="1.1"
id="svg16"
sodipodi:docname="f6s-icon.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>F6S-logo</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview18"
showgrid="false"
inkscape:zoom="2.36"
inkscape:cx="131.4386"
inkscape:cy="70.886192"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg16" />
<!-- Generator: Sketch 48.1 (47250) - http://www.bohemiancoding.com/sketch -->
<title
id="title2">F6S-logo</title>
<desc
id="desc4">Created with Sketch.</desc>
<defs
id="defs6" />
<g
id="Artboard"
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
transform="scale(0.08)">
<g
id="F6S-logo">
<path
d="M 400,0 C 179.086,0 0,179.086 0,400 0,620.914 179.086,800 400,800 620.914,800 800,620.914 800,400 800,179.086 620.914,0 400,0 Z"
id="Path"
inkscape:connector-curvature="0"
style="fill:#f16c4f" />
<polygon
id="polygon9"
points="156.901,180.139 289.76,180.139 293.734,180.139 293.734,184.113 293.734,233.935 293.734,237.909 289.76,237.909 210.697,237.909 210.697,362.821 256.545,362.821 260.519,362.821 260.519,366.795 260.519,416.617 260.519,420.591 256.545,420.591 210.697,420.591 210.697,615.905 210.697,619.879 206.723,619.879 156.901,619.879 152.927,619.879 152.927,615.905 152.927,184.113 152.927,180.139 "
style="fill:#ffffff" />
<path
d="m 372.428,237.909 v 124.912 h 68.517 c 16.582,0 31.127,14.476 31.127,30.977 v 194.721 c 0,16.705 -14.545,31.359 -31.127,31.359 h -95.027 c -16.59,0 -31.143,-14.289 -31.143,-30.578 V 212.296 c 0,-16.829 14.448,-32.156 30.313,-32.156 h 95.858 c 16.582,0 31.127,14.468 31.127,30.961 v 72.657 3.974 h -3.974 -49.822 -3.974 v -3.974 -45.849 z m 0.016,182.68 v 141.519 h 41.875 V 420.589 Z"
id="Combined-Shape"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
d="m 647.073,283.74 v 3.974 h -3.974 -49.822 -3.974 v -3.974 -45.849 h -41.875 v 124.913 l 69.116,0.016 c 16.441,0 30.529,19.672 30.529,35.777 v 189.705 c 0,16.812 -14.266,31.558 -30.529,31.558 h -92.918 c -16.254,0 -30.512,-14.367 -30.512,-30.744 v -106.004 -3.966 l 3.966,-0.007 46.368,-0.083 3.981,-0.007 v 3.981 79.063 h 41.875 V 420.574 l -65.706,0.016 c -16.239,0 -30.484,-14.553 -30.484,-31.143 V 211.282 c 0,-16.599 14.258,-31.16 30.512,-31.16 h 92.918 c 16.263,0 30.529,14.561 30.529,31.16 z"
id="path12"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</g>
</g>
</svg>
</a>
</li><li class="footer-socials__item astro-Z2S6F5KL">
<a href="https://linkedin.com/company/open-adas" target="_blank" rel="noopener noreferrer" class="footer-socials__link astro-Z2S6F5KL">
<svg id="Capa_1" style="enable-background:new 0 0 112.196 112.196;" version="1.1" width="24" height="24" viewBox="0 0 112.196 112.196" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><circle cx="56.098" cy="56.097" r="56.098" style="fill:#007AB9;"/><g><path d="M89.616,60.611v23.128H76.207V62.161c0-5.418-1.936-9.118-6.791-9.118 c-3.705,0-5.906,2.491-6.878,4.903c-0.353,0.862-0.444,2.059-0.444,3.268v22.524H48.684c0,0,0.18-36.546,0-40.329h13.411v5.715 c-0.027,0.045-0.065,0.089-0.089,0.132h0.089v-0.132c1.782-2.742,4.96-6.662,12.085-6.662 C83.002,42.462,89.616,48.226,89.616,60.611L89.616,60.611z M34.656,23.969c-4.587,0-7.588,3.011-7.588,6.967 c0,3.872,2.914,6.97,7.412,6.97h0.087c4.677,0,7.585-3.098,7.585-6.97C42.063,26.98,39.244,23.969,34.656,23.969L34.656,23.969z M27.865,83.739H41.27V43.409H27.865V83.739z" style="fill:#F1F2F2;"/></g></g><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/></svg>
</a>
</li><li class="footer-socials__item astro-Z2S6F5KL">
<a href="https://github.com/open-adas" target="_blank" rel="noopener noreferrer" class="footer-socials__link astro-Z2S6F5KL"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9991 1.99999C6.47773 1.99999 2 6.47713 2 12.0003C2 16.4179 4.86504 20.1663 8.83876 21.4892C9.33908 21.5807 9.52141 21.2719 9.52141 21.0067C9.52141 20.7692 9.51282 20.1405 9.50791 19.3062C6.72636 19.9103 6.13948 17.9655 6.13948 17.9655C5.68459 16.8102 5.02895 16.5026 5.02895 16.5026C4.121 15.8826 5.09771 15.8948 5.09771 15.8948C6.10142 15.9654 6.62936 16.9256 6.62936 16.9256C7.52135 18.4536 8.97014 18.0122 9.53983 17.7562C9.63069 17.1103 9.88913 16.6696 10.1746 16.4197C7.95414 16.1668 5.61951 15.3092 5.61951 11.4773C5.61951 10.3852 6.00934 9.49319 6.64901 8.79396C6.54588 8.54104 6.20271 7.52441 6.74723 6.14745C6.74723 6.14745 7.58642 5.87856 9.49685 7.17203C10.2943 6.95042 11.1501 6.83992 12.0003 6.83562C12.8499 6.83992 13.7051 6.95042 14.5038 7.17203C16.413 5.87856 17.2509 6.14745 17.2509 6.14745C17.7967 7.52441 17.4535 8.54104 17.351 8.79396C17.9919 9.49319 18.3786 10.3852 18.3786 11.4773C18.3786 15.319 16.0403 16.1643 13.8131 16.4117C14.1716 16.7205 14.4915 17.3307 14.4915 18.2638C14.4915 19.6003 14.4792 20.6789 14.4792 21.0067C14.4792 21.2744 14.6597 21.5856 15.1668 21.488C19.1374 20.1626 22 16.4173 22 12.0003C22 6.47713 17.5223 1.99999 11.9991 1.99999Z" fill="currentColor"></path>
</svg></a>
</li>
</ul>
</div>
<div class="astro-Z2S6F5KL">
<h6 class="astro-Z2S6F5KL">Products</h6>
<ul class="footer-link__list astro-Z2S6F5KL">
<li class="astro-Z2S6F5KL"><a href="/products/automate" class="astro-Z2S6F5KL">Automate</a></li><li class="astro-Z2S6F5KL"><a href="/products/LabelStore" class="astro-Z2S6F5KL">LabelStore</a></li><li class="astro-Z2S6F5KL"><a href="/products/StepA" class="astro-Z2S6F5KL">StepA</a></li><li class="astro-Z2S6F5KL"><a href="/products/Shop" class="astro-Z2S6F5KL">Shop</a></li><li class="astro-Z2S6F5KL"><a href="/products/Teleport" class="astro-Z2S6F5KL">Teleport</a></li>
</ul>
</div><div class="astro-Z2S6F5KL">
<h6 class="astro-Z2S6F5KL">Company</h6>
<ul class="footer-link__list astro-Z2S6F5KL">
<li class="astro-Z2S6F5KL"><a href="/company/about" class="astro-Z2S6F5KL">About</a></li><li class="astro-Z2S6F5KL"><a href="/blog" class="astro-Z2S6F5KL">Blog</a></li><li class="astro-Z2S6F5KL"><a href="/company/contact" class="astro-Z2S6F5KL">Contact</a></li>
</ul>
</div>
</div><div class="footer-copyright__container astro-Z2S6F5KL">
<p class="astro-Z2S6F5KL">Copyright © 2022 OPEN-ADAS</p>
</div>
</div>
</footer>
</body></html>