mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
Matthias Kretschmann
dbe88db64d
* move sections around * add CTA to intro * remove redundant Features CTA section * give Blog section title/description * IPDB banner on every page of the site * decouple content & code in intro section
65 lines
2.0 KiB
HTML
65 lines
2.0 KiB
HTML
---
|
|
layout: base
|
|
|
|
tagline: 'Meet BigchainDB. <br>The scalable blockchain database.'
|
|
|
|
front_page: true
|
|
quotes: set1
|
|
|
|
js: page-front.min.js
|
|
|
|
redirect_from:
|
|
- /partners/
|
|
|
|
|
|
intro:
|
|
title: "This is BigchainDB"
|
|
description: "With high throughput, sub-second latency and powerful functionality to automate business processes, BigchainDB looks, acts and feels like a database with added blockchain characteristics."
|
|
keyfeatures:
|
|
- title: "Decentralization"
|
|
icon: "icon-nodes"
|
|
- title: "Immutability"
|
|
icon: "icon-castle"
|
|
- title: "Native Assets"
|
|
icon: "icon-diamond"
|
|
text: "BigchainDB allows developers and enterprise to deploy blockchain proof-of-concepts, platforms and applications with a scalable blockchain database, supporting a wide range of industries and use cases."
|
|
button: "All Features"
|
|
---
|
|
|
|
{% include hero.html %}
|
|
|
|
<section id="features" class="section section-intro">
|
|
<div class="row">
|
|
<header class="section-header">
|
|
<h1 class="section-title">{{ page.intro.title }}</h1>
|
|
<p class="section-description lead">{{ page.intro.description }}</p>
|
|
</header>
|
|
|
|
<div class="section-intro__main grid grid--full grid-small--fit grid--gutters">
|
|
{% for feature in page.intro.keyfeatures %}
|
|
<div class="grid__col">
|
|
<svg class="icon">
|
|
<use xlink:href="/assets/img/sprite.svg#{{ feature.icon }}"></use>
|
|
</svg>
|
|
<h3>{{ feature.title }}</h3>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<p class="large text-center">{{ page.intro.text }}</p>
|
|
|
|
<p class="text-center">
|
|
<a class="btn btn-primary" href="/features/">{{ page.intro.button }}</a>
|
|
</p>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% include sections/section-testimonials.html %}
|
|
|
|
{% include sections/section-cta-enterprise.html %}
|
|
|
|
{% include sections/section-partners.html %}
|
|
|
|
{% include sections/section-blog.html %}
|