Skip to content

Commit 274d03d

Browse files
committed
Update customers
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
1 parent 3420367 commit 274d03d

9 files changed

Lines changed: 138 additions & 1 deletion

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ Before making any style changes / additions please consider:
259259
- make use of the declared SASS variables and mixins
260260
- each section on the website should have its own SASS file
261261

262-
263262
### Altering the Header and Footer
264263

265264
The site's navbar and footer are configured via YAML in the following files:

_data/customers.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
- name: Corva
2+
logo: corva.png
3+
- name: Baker Hughes Company
4+
logo: bakerhughes.png
5+
- name: BCubed Engineering
6+
logo: bcubed.png
7+
- name: Deloitte Cyber LLC
8+
logo: deloitte.png
9+
- name: End to End Networks
10+
logo: e2enetworks.png
11+
- name: Fullscript
12+
logo: fullscript.png
13+
- name: Kubiya
14+
logo: kubiya.png
15+
- name: Lifetime Value Corporation
16+
logo: ltvco.png
17+
- name: Majesco
18+
logo: majesco.png
19+
- name: Mnemonic As
20+
logo: mnemonic.png
21+
- name: Optiv
22+
logo: optiv.png
23+
- name: Patchworks Integration
24+
logo: patchworks.png
25+
- name: Rudderstack
26+
logo: rudderstack.png
27+
- name: Surge
28+
logo: surge.png
29+
- name: Yokogawa Electrical
30+
logo: yokogawa.png
31+
- name: Waylay
32+
logo: waylay.png
33+
34+
- name: Cognite AS
35+
logo: cognite.png
36+
- name: LivePerson
37+
logo: liveperson.png
38+
- name: Northwestern Mutual
39+
logo: nw.png
40+
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!-- <style>
2+
.image.is-128x128 {
3+
width: 128px;
4+
height: 128px;
5+
display: flex;
6+
align-items: center;
7+
justify-content: center;
8+
}
9+
10+
.customer-logo {
11+
max-height: 100%;
12+
max-width: 100%;
13+
object-fit: contain;
14+
}
15+
</style> -->
16+
17+
<div class="container">
18+
<div class="columns is-multiline">
19+
<div class="column is-12 has-text-centered">
20+
<h2 class="title is-size-3 is-size-2-desktop has-text-white">
21+
Trusted in production
22+
</h2>
23+
</div>
24+
25+
<div class="column is-12">
26+
<div class="columns is-multiline">
27+
{% for customer in site.data.customers %}
28+
{% if customer %}
29+
<div class="column is-2-desktop is-4-tablet is-6-mobile">
30+
<figure class="image is-128x128">
31+
<img class="customer-logo" src="images/customers/{{ customer.logo }}" alt="{{ customer.name }}">
32+
</figure>
33+
</div>
34+
{% endif %}
35+
{% endfor %}
36+
</div>
37+
</div>
38+
39+
<div class="column is-12 has-text-centered">
40+
<p class="has-text-weight-light is-size-5 is-size-4-desktop has-text-white customers-category">
41+
Learn about OpenFaaS features & benefits</p>
42+
<a href="{{ site.baseurl }}/pricing" class="button is-primary">
43+
See options
44+
<span class="icon">
45+
<i class="fas fa-long-arrow-alt-right"></i>
46+
</span>
47+
</a>
48+
</div>
49+
</div>
50+
</div>

_sass/openfaas/includes/landing-page/core.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
@import "users.scss";
88
@import "description.scss";
99
@import "sponsors.scss";
10+
@import "customers.scss";
1011
@import "demo-samples.scss";
1112
@import "call-to-action.scss";
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
.hero.is-primary {
2+
.customers {
3+
&-category {
4+
&.title {
5+
font-weight: 300;
6+
text-transform: capitalize;
7+
}
8+
}
9+
10+
.button {
11+
margin-top: $padding-step * 2;
12+
13+
border: 3px solid;
14+
border-radius: 10px;
15+
16+
background: #ffffff;
17+
border-color: #000000;
18+
19+
color: black;
20+
21+
transition: box-shadow .3s;
22+
23+
&:hover {
24+
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.26);
25+
.icon {
26+
transform: translateX(10px);
27+
}
28+
}
29+
30+
.icon {
31+
margin: 0 0 0 10px;
32+
33+
transition: transform .3s;
34+
}
35+
}
36+
37+
}
38+
}

_sass/openfaas/includes/landing-page/general.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
padding-bottom: $padding-step * 4;
5555
}
5656

57+
&.customers {
58+
padding-top: $padding-step * 4;
59+
padding-bottom: $padding-step * 4;
60+
}
61+
5762
&.call-to-action-cards {
5863
padding-top: $padding-step * 8;
5964
}

images/customers/patchworks.png

11.2 KB
Loading

images/customers/rudderstack.png

12.6 KB
Loading

index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@
3333
{% include landing-page/landing-demo.html %}
3434
</div>
3535

36+
<div class="hero-body customers" style="background-color: dodgerblue;">
37+
{% include landing-page/landing-customers.html %}
38+
</div>
39+
3640
<div class="hero-body grey-darker-bis sponsors">
3741
{% include landing-page/landing-sponsors.html %}
3842
</div>

0 commit comments

Comments
 (0)