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

28 lines
790 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",
2018-10-01 04:32:48 +02:00
description: "Read the formal specification for LBRY.",
2018-09-24 23:58:31 +02:00
destination: "/whitepaper",
2018-10-01 04:32:48 +02:00
label: "Study the Paper"
2018-09-24 23:58:31 +02:00
}, {
2018-10-01 04:32:48 +02:00
title: "Contributor's Guide",
description: "Can you code, design, write or test? Join us!",
destination: "/contribute",
label: "Read the Guide"
}, {
title: "SDK APIs",
description: "Method signatures and examples for lbry-sdk, the most common way to build on LBRY.",
destination: "/api/sdk",
label: "SDK APIs"
}, {
title: "Blockchain APIs",
description: "Method signatures and examples for lbrycrd, the LBRY blockchain.",
2018-09-24 23:58:31 +02:00
destination: "/api/blockchain",
2018-10-01 04:32:48 +02:00
label: "Blockchain APIs"
2018-09-24 23:58:31 +02:00
}]);
2018-10-01 01:43:35 +02:00
};