lbry.tech/app/components/resources-link-grid.js

23 lines
574 B
JavaScript
Raw Normal View History

2018-09-24 23:58:31 +02:00
"use strict";
2018-10-01 01:43:35 +02:00
import linkGrid from "./link-grid";
2018-09-24 23:58:31 +02:00
export default () => {
return linkGrid([{
title: "Whitepaper",
description: "It's a white paper",
destination: "/whitepaper",
label: "Read"
2018-09-30 19:34:29 +02:00
}]) + linkGrid([ {
title: "LBRY SDK APIs",
description: "The LBRY SDK is the simplest way to start building with LBRY.",
destination: "/api/protocol",
label: "LBRY SDK API"
2018-09-24 23:58:31 +02:00
}, {
title: "Blockchain Docs",
description: "Learn how to talk to blockchain real good",
destination: "/api/blockchain",
label: "Blockchain API"
}]);
2018-10-01 01:43:35 +02:00
};