Skip to content

Commit dae4474

Browse files
authored
Merge pull request #360 from vania-pooh/master
Added "Why choose Aerokube" section
2 parents bb33839 + f574d2f commit dae4474

File tree

8 files changed

+23321
-135
lines changed

8 files changed

+23321
-135
lines changed

package-lock.json

Lines changed: 23253 additions & 83 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
baseurl = "/"
22
languageCode = "en-us"
33
languageLang = "en"
4-
title = "Aerokube | Efficient Selenium Testing Infrastructure"
4+
title = "Aerokube | Efficient Browser Automation Infrastructure"
55

66
enableRobotsTXT = true
77

@@ -11,4 +11,4 @@ enableRobotsTXT = true
1111
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]
1212

1313
[params]
14-
description = "We deliver lightning fast and efficient Selenium testing infrastructure: Selenoid for Docker, Moon for Kubernetes and Browsers - online Selenium platform"
14+
description = "We deliver lightning fast and efficient browser automation infrastructure: Selenoid for Docker, Moon for Kubernetes and Moon Cloud - online browser automation platform. Our solutions support Selenium, Playwright, Cypress and Puppeteer out of the box."

site/data/meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"name": "Youtube",
21-
"url": "https://www.youtube.com/channel/UC9HvE3FNfTvftzpvXi9c69g"
21+
"url": "https://www.youtube.com/@aerokube"
2222
},
2323
{
2424
"name": "Mail us",
@@ -65,7 +65,7 @@
6565
"title": "Selenium: Securing Your Moon Cluster in Kubernetes and Openshift",
6666
"description": "This article describes how to enabled security features in Moon.",
6767
"url": "https://blog.aerokube.com/selenium-securing-your-moon-cluster-in-kubernetes-and-openshift-92bde882a240"
68-
},
68+
},
6969
{
7070
"title": "Selenium: Moon Environment Provisioning",
7171
"description": "This article gives more light about new Moon context feature.",

site/layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "main" }}
22
{{ partial "hero" . }}
3-
{{ partial "videos" . }}
3+
{{ partial "why" . }}
44
{{ partial "articles" . }}
55
{{ end }}

site/layouts/partials/hero.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div class="container hero">
22
<div class="row justify-content-center text-center">
33
<div class="col-12">
4-
<h1 class="hero__heading-title">Simple and extremely efficient solutions<br />for your Selenium test infrastructure</h1>
5-
<p class="hero__heading-description">Short way to efficient Selenium testing</p>
4+
<h1 class="hero__heading-title">Simple and extremely efficient solutions<br />for your browser automation infrastructure</h1>
5+
<p class="hero__heading-description">Short way to efficient browser automation</p>
66
</div>
77
<div class="col-12 d-none d-sm-none d-md-none d-lg-block">
88
<img src="img/pipes.svg" alt="pipes">

site/layouts/partials/videos.html

Lines changed: 0 additions & 36 deletions
This file was deleted.

site/layouts/partials/why.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<div class="why">
2+
<div class="why__title-wrapper">
3+
<div class="container">
4+
<div class="row">
5+
<div class="col-12 text-center">
6+
<h2 class="why__title">Why choose Aerokube</h2>
7+
</div>
8+
</div>
9+
<div class="row">
10+
<ul class="col-10 offset-1 why__steps">
11+
<li class="why__step"><strong>Experienced team.</strong> We have more than 10 years of experience with large scale browser automation infrastructure. Clusters that we manage have more than 5000 browsers running in parallel.</li>
12+
<li class="why__step"><strong>Reliable products.</strong> Creating solutions that work under any load is our top priority.</li>
13+
<li class="why__step"><strong>Powerful features.</strong> Our solutions support all popular browser automation frameworks: <a href="https://selenium.dev/" title="Selenium" target="_blank">Selenium</a>, <a href="https://playwright.dev/" title="Playwright" target="_blank">Playwright</a>, <a href="https://pptr.dev/" title="Puppeteer" target="_blank">Puppeteer</a> and <a href="https://cypress.io/" title="Cypress" target="_blank">Cypress</a>.</li>
14+
<li class="why__step"><strong>Easy to deploy and maintain.</strong> We provide ready-to-use manifests and instructions allowing to launch working infrastructure in minutes. Our infrastructure requires little or almost no maintenance.</li>
15+
<li class="why__step"><strong>Cost-efficient.</strong> Our solutions have low memory and CPU consumption. Built-in automated scaling feature dramatically lowers final cost of browser automation infrastructure.</li>
16+
<li class="why__step"><strong>Enterprise level security.</strong> Our solutions support enterprise technologies such as additional <a href="https://en.wikipedia.org/wiki/Transport_Layer_Security" title="TLS" target="_blank">TLS</a> certificates, private container registries, <a href="https://openid.net/connect/" title="OpenID Connect" target="_blank">OpenID Connect</a>, fine-grained authentication and authorization out of the box.</li>
17+
</ul>
18+
</div>
19+
</div>
20+
</div>
21+
</div>

src/css/imports/style.scss

Lines changed: 40 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ a, a:hover {
99
color: inherit;
1010
}
1111

12+
a[href] {
13+
border-bottom: 1px dashed;
14+
}
15+
1216
h1 {
1317
font-size: 2.111rem;
1418
line-height: 138%;
@@ -51,6 +55,9 @@ nav li {
5155
height: 80px;
5256

5357
&__logo {
58+
59+
border-bottom-style: none !important;
60+
5461
&-image {
5562
width: 40px;
5663
height: 40px;
@@ -141,6 +148,7 @@ nav li {
141148
}
142149

143150
&__feature {
151+
border-bottom-style: none !important;
144152
display: inline-block;
145153
height: 190px;
146154
padding: 42px 30px;
@@ -212,27 +220,50 @@ nav li {
212220
}
213221
}
214222

215-
.videos {
223+
.why {
216224
margin-top: 103px;
217225

218226
&__title-wrapper {
219-
padding-top: 68px;
227+
padding-top: 46px;
220228
padding-bottom: 46px;
221229
background-color: #F5F5F5;
222230
}
223231

224-
&__half-container {
232+
&__title {
233+
margin-bottom: 24px;
234+
}
235+
236+
&__steps {
237+
counter-reset: section;
238+
list-style-type: none;
239+
padding: 0 0 0 64px;
240+
}
241+
242+
&__step {
243+
background-color: white;
244+
border: 2px solid rgba(23, 84, 237, 0.2);
245+
border-radius: 4px;
225246
position: relative;
247+
padding: 16px;
248+
color: rgba(10, 34, 94, 1);
249+
font-size: 18px;
250+
margin-bottom: 16px;
226251

227252
&::before {
228-
content: '';
229253
position: absolute;
230-
width: 100%;
231-
height: 100px;
232-
left: 0;
254+
left: -64px;
233255
top: 0;
234-
background-color: #F5F5F5;
235-
z-index: 1;
256+
vertical-align: middle;
257+
font-family: 'Ubuntu Mono', monospace;
258+
font-size: 46px;
259+
font-weight: 700;
260+
color: rgba(158, 165, 183, 1);
261+
counter-increment: section;
262+
content: counter(section);
263+
}
264+
265+
a[href] {
266+
border-bottom: 1px dashed;
236267
}
237268
}
238269

0 commit comments

Comments
 (0)