1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 01:36:55 +01:00

add the quote

This commit is contained in:
Matthias Kretschmann 2017-04-20 10:48:43 +02:00
parent 06e81b12a9
commit 610b358748
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
4 changed files with 40 additions and 0 deletions

View File

@ -56,6 +56,21 @@
}
.section--enterpriseintro {
.testimonial {
@extend .large;
margin: $spacer * 4 auto;
@media ($screen-sm) {
max-width: 66%;
}
}
.testimonial__quote {
&:before {
margin-left: -1.3rem;
}
}
.btn {
margin-top: $spacer * 2;
}

View File

@ -165,6 +165,12 @@
}
}
.testimonial__quote {
&:before {
margin-left: -1.3rem;
}
}
.testimonial__avatar {
width: 5rem;
height: 5rem;

View File

@ -42,6 +42,7 @@
// quote characters
&:before {
content: "";
font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-size: 250%;
color: $gray-light;
line-height: 1;

View File

@ -24,6 +24,11 @@ intro:
description: "Whether youre a system architect, a developer or a database specialist, BigchainDB offers the performance, scale and tooling to help you create the future."
text: "Traditional blockchains lack the scale and speed that most enterprises require. BigchainDB takes a different approach, one that starts with a big data distributed database and then adds blockchain characteristics. The result is linear scaling, high throughput and low latency, making data-centric and high volume use cases a breeze."
text2: "BigchainDB puts data at the forefront, making it the only decentralized blockchain database giving enterprises the advantages of scale, queryability and performance in one package."
quote:
copy: "It takes me one day to build on BigchainDB what it took me 30 days to build on Bitcoin."
name: Thomas Fürstner
org: CEO Riddle & Code
image: thomas-fuerstner.jpg
features:
- title: "Scale & performance"
description: "La la la...for high-throughput use cases."
@ -114,6 +119,19 @@ contact:
<header class="section-header text-left">
<h1 class="section-title">{{ page.intro.title }}</h1>
<p class="section-description">{{ page.intro.description }}</p>
<figure class="testimonial">
<blockquote class="testimonial__quote">{{ page.intro.quote.copy }}</blockquote>
<figcaption class="testimonial__caption">
<img class="testimonial__avatar" src="/assets/img/{{ page.intro.quote.image }}">
<cite class="testimonial__cite">
<span class="testimonial__name">{{ page.intro.quote.name }}</span>
<span class="testimonial__org">{{ page.intro.quote.org }}</span>
</cite>
</figcaption>
</figure>
<p>{{ page.intro.text }}</p>
</header>