-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
610 lines (538 loc) · 21.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<title>Document</title>
</head>
<body>
<header class="header-top">
<div class="fullscreen-nav d-none">
<!-- <div class="overlay"></div> -->
<nav id="fullscreen">
<div id="dismiss">
<i class="fa fa-times text-white font-xl"></i>
</div>
<div class="fullmenu-brand text-center mt-4">
<a href="index.html" class="navbar-brand">
<img src="./images/brand-1.png" alt="" width="200" height="70" />
</a>
</div>
<ul class="text-center navbar-nav">
<li class="nav-item active">
<a href="#" class="nav-link text-white font-lg">PLATFORMS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-white font-lg">SOLUTIONS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-white font-lg">COMMUNITY</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-white font-lg">COMPANY</a>
</li>
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white font-lg">BLOG</a>
</li>
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white font-lg">DEMO</a>
</li>
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white mb-4 font-lg">PRICING</a>
</li>
<li class="nav-item mx-1">
<a href="#" class="btn-green px-5">Get Started</a>
</li>
</ul>
</nav>
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-transparent">
<a href="index.html" class="navbar-brand">
<img src="./images/brand.png" width="160" height="55" alt="" />
</a>
<button type="button">
<i class="fa fa-bars nav-menu"></i>
</button>
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a href="#" class="nav-link">PLATFORMS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">SOLUTIONS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">COMMUNITY</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">COMPANY</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white">BLOG</a>
</li>
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white">DEMO</a>
</li>
<li class="nav-item mx-1 mt-1">
<a href="#" class="nav-link text-white">PRICING</a>
</li>
<li class="nav-item mx-1">
<a href="#" class="nav-link btn-green">Get Started</a>
</li>
</ul>
</nav>
</header>
<section class="header-section banner">
<div class="container-fluid header-content">
<div class="dark-icon">
<img src="./images/moon.png" class="dark_icon_img" width="25" alt="" />
</div>
<div class="col-lg-7 col-md-8">
<div class="d-flex">
<div class="align-self-start">
<h1 class="header-section__title mb-4">
<span>Take Control of Your Cloud Native Development</span>
</h1>
<h3 class="header-section__description">
<span>Remove the complexities, inconsistencies, and risks that get
between you and shipping great software.</span>
</h3>
<div class="header-section__button mt-5">
<a href="#" class="btn-green nav-link p-3 mx-2">Request a Demo</a>
<a href="#" class="btn-green nav-link p-3 mx-2">Get Started</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="sponsor-section">
<div class="container-fluid">
<div class="row">
<div class="col">
<img src="./images/client-1.png" class="brand" alt="" />
</div>
<div class="col">
<img src="./images/client-2.png" alt="brand" />
</div>
<div class="col">
<img src="./images/client-3.png" alt="brand" />
</div>
<div class="col">
<img src="./images/client-4.png" alt="brand" />
</div>
<div class="col">
<img src="./images/client-5.png" alt="brand" />
</div>
<div class="col">
<img src="./images/client-6.png" alt="brand" />
</div>
</div>
</div>
</section>
<section class="report-section">
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="./images/report-screen.png" class="report-image" alt="" />
</div>
<div class="col-md-7 mt-4">
<h2 class="text-white report-section__title">
Understand & Control Your Code
</h2>
<p class="text-white report-section__description">
How many different Docker base images is your organization
running? Which ports do your Docker containers expose? How many
versions of core technologies like TypeScript or Spring Boot are
you running? How many versions of any particular library? The
answers will surprise you. Drift is the enemy of faster shipping,
quality, and security.
</p>
<a href="#" class="btn text-white report-section__btn">Get your Drift Report</a>
</div>
</div>
</div>
</section>
<section class="process-section">
<div class="container">
<div class="row">
<div class="col-md-7 process-section__desc">
<h3>Understand & Control Your Process</h3>
<p>
What is being built and delivered right now? How do you unblock
failing builds and promote applications that are ready for
production? What is deployed and running where? Atomist puts you
in control of your delivery flows, across however many projects
you need.
</p>
</div>
<div class="col-md-4 mt-5">
<img src="./images/goalset-execution.png" alt="" class="process-section__img" />
</div>
</div>
</div>
</section>
<section class="delivery-section">
<div class="container">
<header class="delivery-header">
<div class="text-center pt-5 mb-5">
<h2>Standardize Your Delivery Process</h2>
</div>
</header>
<div class="row">
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/automated-delivery.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title">
Automated Delivery for All of Your Projects
</h5>
<p class="card-text text-secondary">
Streamline CI/CD by updating multiple repositories
automatically.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/deploy-code.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title">
Deploy Your Code to Any Platform
</h5>
<p class="card-text text-secondary">
Enable cloud native platform-agnostic design that frees the
project from the sandbox.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/delivery-3.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title">
Self-Service
</h5>
<p class="card-text text-secondary">
Go from end to end with the same workflow.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/delivery-4.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title text-secondary">
Visualize the State of Your Projects
</h5>
<p class="card-text text-secondary">
Understand the key metrics and what they mean for agility,
security, vulnerability, and pipeline.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/delivery-5.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title">
Collaborate Around Your Delivery Process
</h5>
<p class="card-text text-secondary">
ChatOps put everyone on the same page, all the time.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card bg-transparent border-0">
<img src="./images/delivery-6.png" alt="" class="card-img-top mx-auto" style="width: 10rem" />
<div class="card-body text-center">
<h5 class="card-title">
Get Enterprise-Level Customer Support
</h5>
<p class="card-text text-secondary">
Engage with the Atomist team for top-notch customer support.
Make Atomist a part of your team.
</p>
</div>
</div>
</div>
<div class="mx-auto">
<a href="#" class="btn-green nav-link py-3 px-4">Learn More</a>
</div>
</div>
</div>
</section>
<section class="section-platform">
<div class="container">
<div class="row">
<div class="col-md-6 mt-5">
<h2>Under The Hood of Atomist</h2>
<p class="text-secondary">
Built specifically for modern applications, Atomist is a complete
platform for driving your software delivery from issue to commit
to product deployment. Atomist enables organizations to seize
control of their chaotic delivery environments and make their
ability to deliver software a competitive advantage.
</p>
<div class="mt-5">
<a href="#" class="btn-green py-3 px-5">Explore the platform</a>
</div>
</div>
<div class="col-md-4">
<img src="./images/Circle-Diagram.png" class="platform-diagram" alt="" />
</div>
</div>
</div>
</section>
<section class="atomist-usage">
<div class="container-fluid">
<div class="row">
<div class="col-md-5 mt-5 mr-lg-0 mr-md-4">
<img src="./images/Goals-Execution.png" class="goals-execution" alt="" />
</div>
<div class="col-md-6 mt-5 ml-lg-5 ml-md-5">
<h2>Atomist Use Cases</h2>
<p class="text-secondary">
Atomist enables developers to use code to standardize and automate
frequent, often tedious, tasks in ways that work best for them. It
frees developers to focus on delivering business value. Learn how
Atomist can help you solve complex problems in a consistent way
and respond instantly to crucial business needs.
</p>
<div class="mt-5">
<a href="#" class="btn-green py-3 px-5">View Use Cases</a>
</div>
</div>
</div>
</div>
</section>
<section class="news-banner">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="./images/modern.png" class="banner-img img-fluid" alt="" />
</div>
<div class="col-md-6 pt-5">
<span class="text-secondary">From the Blog</span>
<h2 class="py-2">
Incorporate the Modern World Into the Software’s World
</h2>
<p>
Let's discuss TypeScript projects. How do teams organize theirs?
Where do people put TypeScript source, and where do they put their
output? What is the standard? Is there a standard?
</p>
<a href="#" class="text-secondary">
READ MORE <i class="fa fa-arrow-right mx-1"></i>
</a>
</div>
</div>
</div>
</section>
<section class="peer-connect">
<div class="connect-title mx-auto text-center py-5 text-white">
<h3>Connect with Like-Minded Peers</h3>
<p>
Atomist Is an Open Source Platform with an Extensive Community of
Users
</p>
</div>
<div class="connect-section">
<div class="row">
<div class="col-md-3 pr-1 pl-0">
<a href="#">
<div class="bg-doc text-center pt-5">
<img src="./images/flash.png" alt="flash" class="img-fluid my-lg-4 my-5" width="50" />
<h4 class="text-white">View Documentation</h4>
</div>
</a>
</div>
<div class="col-md-3 pr-1 pl-0">
<a href="#">
<div class="bg-snippet text-center pt-5">
<img src="./images/code.png" alt="flash" class="img-fluid my-lg-4 my-5" width="50" />
<h4 class="text-white">See Code Snippets</h4>
</div>
</a>
</div>
<div class="col-md-3 pr-1 pl-0">
<a href="#">
<div class="bg-slack text-center pt-5">
<img src="./images/slack.png" alt="flash" class="img-fluid my-lg-4 my-5" width="50" />
<h4 class="text-white">Join us on Slack</h4>
</div>
</a>
</div>
<div class="col-md-3 pr-1 pl-0">
<a href="#">
<div class="bg-git text-center pt-5">
<img src="./images/github.png" alt="flash" class="img-fluid my-lg-4 my-5" width="50" />
<h4 class="text-white">Join us on Github</h4>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- CUSTOMER REVIEWS -->
<section class="customer-reviews">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner position-relative">
<div class="carousel-item active">
<div class="icon">
<img src="./images/quotes.svg" class="img-fluid" alt="" />
</div>
<div class="card mx-auto bg-light" style="width: 32rem">
<div class="card-body pt-5">
<h4 class="card-title">
We are excited to use Atomist in our team. The bridge it forms
between multiple tools is an incredible asset that allows us
to speed up development and have happier development in the
meantime.
</h4>
<footer class="blockquote-footer pt-3">
Karan Siddannavar<br />
<span class="pl-2">DEVCLAN</span>
<span class="float-right">
<img src="./images/kyyti.png" width="100" alt="" /></span>
</footer>
</div>
</div>
</div>
<div class="carousel-item">
<div class="icon">
<img src="./images/quotes.svg" class="img-fluid" alt="" />
</div>
<div class="card mx-auto bg-light" style="width: 32rem">
<div class="card-body pt-5">
<h4 class="card-title">
We are excited to use Atomist in our team. The bridge it forms
between multiple tools is an incredible asset that allows us
to speed up development and have happier development in the
meantime.
</h4>
<footer class="blockquote-footer pt-3">
Karan Siddannavar<br />
<span class="pl-2">DEVCLAN</span>
<span class="float-right">
<img src="./images/kyyti.png" width="100" alt="" /></span>
</footer>
</div>
</div>
</div>
<div class="carousel-item">
<div class="icon">
<img src="./images/quotes.svg" class="img-fluid" alt="" />
</div>
<div class="card mx-auto bg-light" style="width: 32rem">
<div class="card-body pt-5">
<h4 class="card-title">
We are excited to use Atomist in our team. The bridge it forms
between multiple tools is an incredible asset that allows us
to speed up development and have happier development in the
meantime.
</h4>
<footer class="blockquote-footer pt-3">
Karan Siddannavar<br />
<span class="pl-2">DEVCLAN</span>
<span class="float-right">
<img src="./images/kyyti.png" width="100" alt="" /></span>
</footer>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<!-- FOTTER SECTION -->
<footer class="footer-section">
<div class="container">
<div class="col-md-6 mx-auto text-center pt-5">
<h3 class="text-white">Faster, Better, Safer Software Delivery</h3>
<div class="footer-buttons pt-5">
<a href="#" class="btn-green p-3 mx-3">Request A Demo</a>
<a href="#" class="btn-green p-3 mx-3">Get Started</a>
</div>
</div>
<div class="footer-logo text-center">
<img src="./images/Atomist-Mark-Color.png" width="55" alt="" />
</div>
<div class="col-md-4 mx-auto mt-5">
<ul class="navbar-nav d-flex flex-row justify-content-center align-items-center">
<a class="text-secondary text-uppercase mx-5">Pricing</a>
<a class="text-secondary text-uppercase mx-5">About</a>
<a class="text-secondary text-uppercase mx-5">Blog</a>
</ul>
<ul class="navbar-nav d-flex flex-row justify-content-center align-items-center my-3">
<a class="text-secondary text-uppercase mx-4">Platform</a>
<a class="text-secondary text-uppercase mx-5">Carrers</a>
<a class="text-secondary text-uppercase mx-5">Docs</a>
</ul>
<ul class="navbar-nav d-flex flex-row justify-content-center align-items-center">
<a class="text-secondary text-uppercase mr-4">developers</a>
<a class="text-secondary text-uppercase mx-4">contact</a>
<a class="text-secondary text-uppercase mx-4">resources</a>
</ul>
</div>
<div class="col-md-12 py-5 text-center">
<a href="#" class="mr-4">
<i class="fa fa-twitter fa-lg fa-2x"></i>
</a>
<a href="#" class="mr-4 text-secondary">
<i class="fa fa-github fa-lg fa-2x"></i>
</a>
<a href="#" class="mr-4">
<i class="fa fa-slack fa-lg fa-2x"></i>
</a>
<a href="#" class="mr-4 text-danger">
<i class="fa fa-youtube fa-lg fa-2x"></i>
</a>
</div>
<div class="text-center">
Created with <i class="fa fa-heart text-danger"></i> in India by Karan Siddannavar.<br>
<span class="text-muted">Copyright © 2019 Atomist. All rights reserved.</span>
</div>
<div class="text-center pt-5">
<a href="#" class="text-muted font-sm mx-1">Terms</a>
<i class="fa fa-circle font-xsm text-muted"></i>
<a href="#" class="text-muted font-sm mx-1">Privacy</a>
</div>
</div>
</footer>
</body>
<audio src="./audio/link.mp3"></audio>
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</html>