mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-21 17:26:55 +01:00
68 lines
2.1 KiB
HTML
68 lines
2.1 KiB
HTML
---
|
|
layout: base
|
|
|
|
tagline: 'Meet BigchainDB.'
|
|
|
|
front_page: true
|
|
quotes: set1
|
|
|
|
js: page-front.min.js
|
|
|
|
redirect_from:
|
|
- /partners/
|
|
|
|
|
|
intro:
|
|
title: "This is BigchainDB"
|
|
description: "With high throughput, low latency, powerful query functionality, decentralized control, immutable data storage and built-in asset support, BigchainDB is like a database with blockchain characteristics."
|
|
keyfeatures:
|
|
- title: "Decentralization"
|
|
icon: "icon-nodes"
|
|
- title: "Query"
|
|
icon: "icon-search"
|
|
- title: "Immutability"
|
|
icon: "icon-castle"
|
|
- title: "Assets & Tokens"
|
|
icon: "icon-diamond"
|
|
text: "BigchainDB allows developers and enterprise to deploy blockchain proof-of-concepts, platforms and applications with a blockchain database, supporting a wide range of industries and use cases."
|
|
button1: "All Features"
|
|
button2: "Get Started"
|
|
---
|
|
|
|
{% 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>
|
|
|
|
<div class="row row--wide">
|
|
<div class="section-intro__main grid grid--half 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>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<p class="large text-center">{{ page.intro.text }}</p>
|
|
|
|
<p class="text-center">
|
|
<a class="btn btn-primary" href="{% link features.html %}">{{ page.intro.button1 }}</a> <a class="btn btn-secondary" href="https://ipdb.io/resources/">{{ page.intro.button2 }}</a>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
{% include sections/section-guide.html %}
|
|
|
|
{% include sections/section-partners.html %}
|
|
|