-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
655 lines (628 loc) · 25.7 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Re-Bot - Smart Automation</title>
<!-- Favicon -->
<link rel="icon" href="img/core-img/favicon.ico" />
<!-- Core Stylesheet -->
<link href="style.css" rel="stylesheet" />
<!-- Responsive CSS -->
<link href="css/responsive.css" rel="stylesheet" />
</head>
<body>
<!-- Preloader Start -->
<div id="preloader">
<div class="colorlib-load"></div>
</div>
<!-- ***** Header Area Start ***** -->
<header class="header_area animated">
<div class="container-fluid">
<div class="row align-items-center">
<!-- Menu Area Start -->
<div class="col-12 col-lg-10">
<div class="menu_area">
<nav class="navbar navbar-expand-lg navbar-light">
<!-- Logo -->
<div class="navbar-brand" href="#"></div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#ca-navbar"
aria-controls="ca-navbar"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Menu Area -->
<div class="collapse navbar-collapse" id="ca-navbar">
<ul class="navbar-nav ml-auto" id="nav">
<li class="nav-item active">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#software"
>Shopfloor Software</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#platforms">IoT Platforms</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#devices">Devices</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#devops">Devops</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">About</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- Signup btn -->
<div class="col-12 col-lg-2">
<div class="sing-up-button d-none d-lg-block">
<a class="nav-link" href="#contact">Contact us</a>
</div>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Wellcome Area Start ***** -->
<section class="wellcome_area clearfix" id="home">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-12 col-md">
<div class="wellcome-heading">
<h2>Re-Bot</h2>
<h3>R</h3>
<p>Smart Automation with a Smile ...</p>
</div>
<div class="get-start-area">
</div>
</div>
</div>
</div>
<!-- Welcome thumb -->
<div class="welcome-thumb wow fadeInDown" data-wow-delay="0.5s">
<img src="img/bg-img/welcome-img.png" alt="" />
</div>
</section>
<!-- ***** Wellcome Area End ***** -->
<!-- ***** Special Area Start ***** -->
<section class="special-area bg-white section_padding_100">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Section Heading Area -->
<div class="section-heading text-center">
<h2>Our mission</h2>
<div class="line-shape"></div>
<p class="section_padding_50 larger">
Re-Bot provides <b>industrial IoT solutions</b> for lean
environments: <b>mobile user interfaces</b> and
<b>backend systems integration</b> for continuously improved
processes based on an agile mindset. We are strongly commited to
open source software and <b>software development</b> - we are
neither resellers nor do we offer some kind of standard
software!
</p>
</div>
</div>
</div>
<div class="row">
<!-- Single Special Area -->
<div class="col-lg-3 col-md-6 col-sm-12 distance">
<a
class="single-special text-center wow fadeInUp nav-link"
data-wow-delay="0.2s"
href="#software"
>
<div class="single-icon">
<i class="ti-mobile" aria-hidden="true"></i>
</div>
<h4>Shopfloor Software</h4>
<p>
Responsive software design saves money by using the same code
base on different devices from smartphone over tablets up to
laptops and large public displays.
</p>
</a>
</div>
<!-- Single Special Area -->
<div class="col-lg-3 col-md-6 col-sm-12 distance">
<a
class="single-special text-center wow fadeInUp"
data-wow-delay="0.4s"
href="#platforms"
>
<div class="single-icon">
<i class="ti-layers-alt" aria-hidden="true"></i>
</div>
<h4>IoT Platforms</h4>
<p>
Our Kubernetes based solutions provide reliable service
operation on AWS, Azure or on-premise in your data center.
</p>
</a>
</div>
<!-- Single Special Area -->
<div class="col-lg-3 col-md-6 col-sm-12 distance">
<a
class="single-special text-center wow fadeInUp"
data-wow-delay="0.6s"
href="#devices"
>
<div class="single-icon">
<i class="ti-rss-alt" aria-hidden="true"></i>
</div>
<h4>Device Connectivity</h4>
<p>
Whether OPC UA or MTConnect - our team of experts assists your
shopfloor team in connecting their devices to IoT platforms in a
cost efficient manner.
</p>
</a>
</div>
<!-- Single Special Area -->
<div class="col-lg-3 col-md-6 col-sm-12 distance">
<a
class="single-special text-center wow fadeInUp"
data-wow-delay="0.6s"
href="#devops"
>
<div class="single-icon">
<i class="ti-rocket" aria-hidden="true"></i>
</div>
<h4>Developer Culture</h4>
<p>
Changing from a pure software consumer to being a software
producer imposes a huge challenge for most companies. We empower
your employees.
</p>
</a>
</div>
</div>
</div>
</section>
<section class="special-area process_area section_padding_50 clearfix">
<div class="container process_container">
<div class="row process_row_img">
<div class="process-img">
<div class="row process_row_heading">
<div class="col-12">
<!-- Heading Text -->
<div class="section-heading--process">
<h2>Industry 4.0</h2>
<p>
Production & supply chain
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Shopfloor Software Area Start ***** -->
<section
class="our-Team-area bg-white section_padding_100 clearfix"
id="software"
>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Heading Text -->
<div class="section-heading">
<h2>Shopfloor Software</h2>
<div class="line-shape"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-6">
<div class="single-team-member">
<div class="member-image">
<img src="img/software-img/modern.jpg" alt="" />
<div class="team-hover-effects">
<div class="team-social-icon"></div>
</div>
</div>
<div class="member-text">
<h4>Modern and flexible</h4>
<p>
Our apps are based on the most recent version of Angular. The
inner structure is set up to be easily testable and
expandable.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="single-team-member">
<div class="member-image">
<img src="img/software-img/languages.jpg" alt="" />
<div class="team-hover-effects">
<div class="team-social-icon"></div>
</div>
</div>
<div class="member-text">
<h4>Multi-language</h4>
<p>
You employees and customers speak different languages - so do
our apps!
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="single-team-member">
<div class="member-image">
<img src="img/software-img/experiments.jpg" alt="" />
<div class="team-hover-effects">
<div class="team-social-icon"></div>
</div>
</div>
<div class="member-text">
<h4>Embrace change</h4>
<p>
We embrace change - so our apps are part of a continuous
deployment pipeline which encourages experiments.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="single-team-member">
<div class="member-image">
<img src="img/software-img/mobile-first.jpg" alt="" />
<div class="team-hover-effects">
<div class="team-social-icon"></div>
</div>
</div>
<div class="member-text">
<h4>Responsive Design</h4>
<p>
It is easy to touch things - so our apps are designed mobile
first.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Shopfloor Software Area End ***** -->
<section
class="special_description_area bg-white section_padding_0_100 clearfix"
id="platforms"
>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Heading Text -->
<div class="section-heading">
<h2>Kubernetes</h2>
<div class="line-shape"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="special_description_img">
<img src="img/software-img/kubernetes.png" alt="" />
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<p>
All of our platforms are based upon another platform: Kubernetes
Container Management. This makes hybrid- and cross-cloud
strategies possible: no matter whether you're commited to AWS,
to the Azure Cloud or have a pure on premise IT - Kubernetes is
available.
</p>
</div>
</div>
</div>
</div>
</section>
<section
class="special_description_area bg-white section_padding_0_100 clearfix"
id="devices"
>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Heading Text -->
<div class="section-heading">
<h2>A million devices</h2>
<div class="line-shape"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-xl-5">
<div class="special_description_content">
<p>
In former times people were commited to just one OS like Windows
7 for the whole company - today your employees and customers
have the freedom of using any kind of devices. We are experts in
connecting those devices to the Kubernetes infrastructure:
</p>
<ul style="margin-bottom: 0.8rem">
<li>- by REST API</li>
<li>- by MQTT over WebSockets</li>
<li>- etc.</li>
</ul>
<p>
Those devices feature different security concepts like
certificates, OAuth or multi-factor authentication. We can show
your IT staff how to deal with those challenges.
</p>
</div>
</div>
<div class="col-lg-6 ml-xl-auto">
<div class="special_description_img">
<img src="img/software-img/devices.png" alt="" />
</div>
</div>
</div>
</div>
</section>
<section
class="special_description_area bg-white section_padding_0_100 clearfix"
id="devops"
>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Heading Text -->
<div class="section-heading">
<h2>Agile & automation</h2>
<div class="line-shape"></div>
<p class="section_padding_50">
The device world is changing permanently and software has to
deal with that change. We do not believe in one time projects
with a fixed budget - and we expect the same from our customers.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="special_description_img">
<img
src="img/bg-img/devops.png"
alt=""
style="margin-bottom:30px;"
/>
</div>
</div>
<div class="col-lg-6 col-xl-5 ml-xl-auto">
<div class="special_description_content">
<p>
Based on a agile mindset true <b>DevOps</b> can only be achieved
with an extensive set of automated tasks like:
</p>
<ul>
<li>- Integration tests</li>
<li>- Infrastucture tests</li>
<li>- Penetration tests</li>
<li>- Load- & stress tests</li>
<li>- Continuous integration/deployment pipelines</li>
<li>- Fast feedback mechanisms (ike ChatOps)</li>
<li>- Agile tools (like Jira & Confluence)</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Contact Us Area Start ***** -->
<section
class="footer-contact-area section_padding_100 clearfix"
id="contact"
style="box-shadow: 0"
>
<div class="container">
<div class="row">
<div class="section-heading">
<h2><b>Re-Bot</b> is a joint venture for Industry 4.0</h2>
<div class="line-shape"></div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="footer-text">
<p class="footer-margin">
If you are looking for software to support your company's steady
growth and success, we are your team:
</p>
<ul class="footer-ul footer-margin">
<li>
- dedicated to just one project at a time
</li>
<li>
- experienced in many industries
</li>
<li>
- commited to top quality
</li>
<li>
- agile in every aspect of our work
</li>
</ul>
<p>
If your business depends on SAP processes and you still have
project managers in your organisation we recommend NOT
contacting us... :)
</p>
</div>
<form id="contactForm">
<div class="contact_input_area">
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control name" placeholder="Your name*" name="name" required>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="email" class="form-control email" placeholder="Your email address*" name="email" required>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control message" rows="5" placeholder="Your message*" name="content" required></textarea>
</div>
</div>
<div class="col-12">
<div id="toast"></div>
<button class="btn submit-btn" type="submit" id="submit">Send</button>
</div>
</div>
</form>
</div>
<div class="col-md-6">
<div class="address-container">
<h3 class="address-headline">e-ntegration GmbH</h3>
<div class="address-text">
<p><span>Address:</span> Weinbergstr. 29, 90607 Rückersdorf</p>
</div>
<div class="phone-text">
<p><span>Email:</span> [email protected]</p>
<p><span>Phone:</span> +49 911 - 543 01 03</p>
</div>
</div>
<div class="address-container">
<h3 class="address-headline">inoxio Quality Services GmbH</h3>
<div class="address-text">
<p><span>Address:</span> Anger 13, 99084 Erfurt</p>
</div>
<div class="phone-text">
<p><span>Email:</span> [email protected]</p>
<p><span>Phone:</span> +49 361 - 430 64 56</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Contact Us Area End ***** -->
<!-- ***** Footer Area Start ***** -->
<footer class="footer-social-icon text-center section_padding_70 clearfix">
<!-- footer logo -->
<div class="footer-text">
<h2>Re-Bot</h2>
</div>
<!-- social icon-->
<div class="footer-menu">
<nav>
<ul>
<li><a href="#" onclick="document.getElementById('impressum').style.visibility='visible'">Imprint</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</nav>
</div>
<div id="impressum" style="visibility:hidden;padding:30px;text-align:left;background-color:rgba(153, 204, 255, 0.24);">
<h2>Impressum</h2>
<p>e-ntegration GmbH<br />
Weinbergstr. 29<br />90607 Rückersdorf</p>
<p>Telefon: +499115430103<br />
E-Mail: <a href="mailto:[email protected]">[email protected]</a><br />
</p>
<p><strong>Vertreten durch:</strong><br />Geschäftsführer Ralph Göllner</p><p><strong>Registereintrag:</strong><br />Eingetragen im Handelsregister.<br />Registergericht: Amtsgericht Nürnberg<br />Registernummer: 188 61</p><p><strong>Umsatzsteuer-ID: </strong><br />Umsatzsteuer-Identifikationsnummer nach §27a Umsatzsteuergesetz:<br />DE 220264493</p><br /><br /><h2>Disclaimer – rechtliche Hinweise</h2>
<b>§ 1 Warnhinweis zu Inhalten</b><br />
Die kostenlosen und frei zugänglichen Inhalte dieser Webseite wurden mit größtmöglicher Sorgfalt erstellt. Der Anbieter dieser Webseite übernimmt jedoch keine Gewähr für die Richtigkeit und Aktualität der bereitgestellten kostenlosen und frei zugänglichen journalistischen Ratgeber und Nachrichten. Namentlich gekennzeichnete Beiträge geben die Meinung des jeweiligen Autors und nicht immer die Meinung des Anbieters wieder. Allein durch den Aufruf der kostenlosen und frei zugänglichen Inhalte kommt keinerlei Vertragsverhältnis zwischen dem Nutzer und dem Anbieter zustande, insoweit fehlt es am Rechtsbindungswillen des Anbieters.<br />
<br />
<b>§ 2 Externe Links</b><br />
Diese Website enthält Verknüpfungen zu Websites Dritter ("externe Links"). Diese Websites unterliegen der Haftung der jeweiligen Betreiber. Der Anbieter hat bei der erstmaligen Verknüpfung der externen Links die fremden Inhalte daraufhin überprüft, ob etwaige Rechtsverstöße bestehen. Zu dem Zeitpunkt waren keine Rechtsverstöße ersichtlich. Der Anbieter hat keinerlei Einfluss auf die aktuelle und zukünftige Gestaltung und auf die Inhalte der verknüpften Seiten. Das Setzen von externen Links bedeutet nicht, dass sich der Anbieter die hinter dem Verweis oder Link liegenden Inhalte zu Eigen macht. Eine ständige Kontrolle der externen Links ist für den Anbieter ohne konkrete Hinweise auf Rechtsverstöße nicht zumutbar. Bei Kenntnis von Rechtsverstößen werden jedoch derartige externe Links unverzüglich gelöscht.<br />
<br />
<b>§ 3 Urheber- und Leistungsschutzrechte</b><br />
Die auf dieser Website veröffentlichten Inhalte unterliegen dem deutschen Urheber- und Leistungsschutzrecht. Jede vom deutschen Urheber- und Leistungsschutzrecht nicht zugelassene Verwertung bedarf der vorherigen schriftlichen Zustimmung des Anbieters oder jeweiligen Rechteinhabers. Dies gilt insbesondere für Vervielfältigung, Bearbeitung, Übersetzung, Einspeicherung, Verarbeitung bzw. Wiedergabe von Inhalten in Datenbanken oder anderen elektronischen Medien und Systemen. Inhalte und Rechte Dritter sind dabei als solche gekennzeichnet. Die unerlaubte Vervielfältigung oder Weitergabe einzelner Inhalte oder kompletter Seiten ist nicht gestattet und strafbar. Lediglich die Herstellung von Kopien und Downloads für den persönlichen, privaten und nicht kommerziellen Gebrauch ist erlaubt.<br />
<br />
Die Darstellung dieser Website in fremden Frames ist nur mit schriftlicher Erlaubnis zulässig.<br />
<br />
<b>§ 4 Besondere Nutzungsbedingungen</b><br />
Soweit besondere Bedingungen für einzelne Nutzungen dieser Website von den vorgenannten Paragraphen abweichen, wird an entsprechender Stelle ausdrücklich darauf hingewiesen. In diesem Falle gelten im jeweiligen Einzelfall die besonderen Nutzungsbedingungen.
</div>
<!-- Foooter Text-->
</footer>
<!-- ***** Footer Area Start ***** -->
<!-- Jquery-2.2.4 JS -->
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Popper js -->
<script src="js/popper.min.js"></script>
<!-- Bootstrap-4 Beta JS -->
<script src="js/bootstrap.min.js"></script>
<!-- All Plugins JS -->
<script src="js/plugins.js"></script>
<!-- Slick Slider Js-->
<script src="js/slick.min.js"></script>
<!-- Footer Reveal JS -->
<script src="js/footer-reveal.min.js"></script>
<!-- Active JS -->
<script src="js/active.js"></script>
</body>
<script>
const form = document.getElementById('contactForm')
const url = 'https://2dl99wknse.execute-api.eu-west-1.amazonaws.com/prod/email/send/json'
const toast = document.getElementById('toast')
const submit = document.getElementById('submit')
function post(url, body, callback) {
var req = new XMLHttpRequest();
req.open("POST", url, true);
req.setRequestHeader("Content-Type", "application/json");
req.addEventListener("load", function () {
if (req.status < 400) {
callback(null, JSON.parse(req.responseText));
} else {
callback(new Error("Request failed: " + req.statusText));
}
});
req.send(JSON.stringify(body));
}
function success () {
toast.innerHTML = 'Thanks for sending us a message! We\'ll get in touch with you ASAP.'
submit.disabled = false
submit.blur()
form.name.focus()
form.name.value = ''
form.email.value = ''
form.content.value = ''
}
function error (err) {
toast.innerHTML = 'There was an error with sending your message, hold up until I fix it. Thanks for waiting.'
submit.disabled = false
console.log(err)
}
form.addEventListener('submit', function (e) {
e.preventDefault()
toast.innerHTML = 'Sending'
submit.disabled = true
const payload = {
name: form.name.value,
email: form.email.value,
content: form.content.value
}
post(url, payload, function (err, res) {
if (err) { return error(err) }
success()
})
})
</script>
</html>