2017-03-28 14:22:01 +02:00
---
layout: page
title: Use Cases
2017-04-11 14:30:58 +02:00
tagline: Where blockchains and databases meet
2017-03-28 14:22:01 +02:00
description: For blockchain technology to go mainstream, it needs scale. At BigchainDB, we’ ve taken care of that for you.
2017-03-29 18:32:31 +02:00
image: photo4.jpg
2017-08-22 15:07:07 +02:00
header: photo4.jpg
2017-06-28 20:59:47 +02:00
ipdb: true
2017-03-29 18:32:31 +02:00
2017-03-28 14:22:01 +02:00
intro:
description: "BigchainDB is for developers and organizations looking for a scalable, queryable database with blockchain characteristics such as decentralization, immutability and the ability to treat anything stored in the database as an asset. Whether it’ s atoms, bits or bytes of value, any real-world blockchain application needs scale and performance. A perfect fit for BigchainDB."
addition: "We’ re still in the early days of the decentralization movement and while all of the industries below are being disrupted in one way or another, there’ s an abundance of opportunity within each."
contact:
text: Building something with BigchainDB?
action: We want to hear from you.
link: "/contact/"
newsletter:
title: Be the first to hear about our customer stories.
js: page-usecases.min.js
---
< section class = "section section--intro" >
< div class = "row" >
< header class = "section-header" >
2017-04-11 14:30:58 +02:00
< p class = "section-description" > {{ page.intro.description }}< / p >
< div class = "grid grid--full grid-small--half grid--gutters grid--top text-left" >
< div class = "grid__col" >
{{ page.intro.addition }}
< / div >
< div class = "grid__col" >
< p > < strong > {{ page.intro.contact.text }}< / strong > < br > < a href = "{{ page.intro.contact.link }}" > {{ page.intro.contact.action }}< / a > < / p >
2017-03-28 14:22:01 +02:00
< / div >
2017-04-11 14:30:58 +02:00
< / div >
2017-03-28 14:22:01 +02:00
< / header >
< / div >
< / section >
< nav class = "menu--sub" >
< div class = "row row--wide" >
< div class = "menu-overflow" >
{% for industry in site.data.industries %}
2017-08-22 13:28:58 +02:00
< a class = "menu__link" href = "#{{ industry.name | downcase | replace: " " , " " } } " data-scroll >
2017-03-28 14:22:01 +02:00
< svg class = "icon" >
< use xlink:href = "/assets/img/sprite.svg#{{ industry.icon }}" > < / use >
< / svg >
{{ industry.name }}
< / a >
{% endfor%}
< / div >
< / div >
< / nav >
{% for industry in site.data.industries %}
< section class = "section section--industry" id = "{{ industry.name | downcase | replace: " " , " " } } " >
< header class = "section-header row" >
< svg class = "icon" >
< use xlink:href = "/assets/img/sprite.svg#{{ industry.icon }}" > < / use >
< / svg >
< h1 class = "section-title" > {{ industry.name }}< / h1 >
< p class = "section-description" > {{ industry.description }}< / p >
< / header >
{% if industry.usecase %}
< div class = "row" >
{% for usecase in site.usecases %}
{% if industry.usecase == usecase.slug %}
< article class = "featuredusecase" >
< a class = "featuredusecase__logo" href = "{{ usecase.url }}" >
{% if usecase.bitmaplogo %}
< img src = "/assets/img/{{ usecase.bitmaplogo }}" / >
{% else %}
< svg >
< use xlink:href = "/assets/img/sprite.svg#logo-{{ usecase.slug }}" > < / use >
< / svg >
{% endif %}
< / a >
< div class = "featuredusecase__content" >
< h1 class = "featuredusecase__title" > < a href = "{{ usecase.url }}" > {{ usecase.title }}< / a > < / h1 >
< p > {{ usecase.description }}< / p >
< a href = "{{ usecase.url }}" > Learn more< / a >
< / div >
< / article >
{% endif %}
{% endfor %}
< / div >
{% endif %}
< / section >
{% endfor%}
{% include sections/section-newsletter.html %}