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

123 lines
4.6 KiB
HTML
Raw Normal View History

2017-04-06 12:02:25 +02:00
---
2017-04-10 13:25:44 +02:00
layout: base
2017-04-06 12:02:25 +02:00
title: Enterprise
js: page-enterprise.min.js
2017-04-12 16:36:57 +02:00
hero:
title: "Bring the best of blockchain to your enterprise with BigchainDB."
description: "From ideation to production, BigchainDB has the team and technology to deploy enterprise-grade applications and platforms for businesses looking to build the tools of tomorrow."
cta:
- name: Get in touch
link: "#contact"
scroll: true
- name: Download one-pager
link: ""
intro:
title: "Blockchain technology that scales"
description: "Blockchain systems share a single source of truth for data and assets, backed by privacy and security guarantees. Yet traditional blockchains lack the scale and speed that most enterprises need. 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. <br><br>No other decentralized blockchain database has the advantages of scale, queryability and performance in one package."
benefits:
- title: "Ensure Interoperability"
description: "Unlock and integrate data from existing legacy systems."
- title: "Reduce costs"
description: "Transparency reduces costs for recalls, liability, loss and fraud."
- title: "Create new business models"
description: "Build collaborative data-centric ecosystems that unleash latent value."
- title: "Automate Processes"
description: "Real-time data triggers business logic"
- title: "Share the Story"
description: "Trust and identity out-of-the-box with verifiable audit trails, provenance and tracking"
2017-04-06 12:02:25 +02:00
---
2017-04-10 13:25:44 +02:00
<header class="hero hero--enterprise">
{% include menu-main.html %}
<div class="hero__content row row--wide">
<hgroup>
2017-04-12 16:36:57 +02:00
<h1 class="section-title">{{ page.hero.title }}</h1>
<p class="section-description">{{ page.hero.description }}</p>
{% for cta in page.hero.cta %}
<a class="btn {% if cta.scroll %}scroll{% endif %}" href="{{ cta.link }}">{{ cta.name }}</a>
{% endfor %}
2017-04-10 13:25:44 +02:00
</hgroup>
</div>
</header>
2017-04-12 16:36:57 +02:00
<section class="section section--enterpriseintro">
<div class="row">
2017-04-10 13:25:44 +02:00
<header class="section-header">
2017-04-12 16:36:57 +02:00
<h1 class="section-title">{{ page.intro.title }}</h1>
<p class="section-description">{{ page.intro.description }}</p>
2017-04-10 13:25:44 +02:00
</header>
2017-04-12 16:36:57 +02:00
<div class="grid grid--full grid-small--half grid--gutters">
{% for benefit in page.intro.benefits %}
<div class="grid__col">
<div class="feature">
<svg class="feature__icon icon">
<use xlink:href="/assets/img/sprite.svg#icon-cat"></use>
</svg>
<div class="feature__detail">
<h1 class="feature__title">{{ benefit.title }}</h1>
<p class="feature__text">{{ benefit.description }}</p>
</div>
</div>
</div>
{% endfor %}
2017-04-10 13:25:44 +02:00
</div>
2017-04-12 16:36:57 +02:00
</div>
</section>
<section class="section section--enterprisepartners background--darker">
<div class="row">
<header class="section-header">
<h1 class="section-title">Proudly trusted by</h1>
<p class="section-description">La la la.</p>
</header>
</div>
<div class="row row--wide">
<article class="grid grid--full grid-small--half grid-medium--fit grid-medium--columns grid--justifycenter grid--gutters">
{% assign partners_sorted = (site.partners | sort: 'date') %}
{% for partner in partners_sorted %}
<div class="grid__col grid__col--1">
<a class="partner" href="{{ partner.link }}">
<svg class="partner__logo partner__logo--{{ partner.slug }}" aria-labelledby="title">
<title>{{ partner.title }}</title>
<use xlink:href="/assets/img/sprite.svg#logo-{{ partner.slug }}"></use>
</svg>
</a>
</div>
{% endfor %}
</article>
</div>
2017-04-10 13:25:44 +02:00
</div>
</section>
2017-04-12 12:08:37 +02:00
2017-04-12 16:36:57 +02:00
<section class="section section--enterprisecontact" id="contact">
2017-04-12 12:08:37 +02:00
<div class="row">
<header class="section-header">
<h1 class="section-title">Get in touch</h1>
<p class="section-description">La la la.</p>
</header>
{% include form-enterprise.html %}
</div>
</section>