2018-09-24 23:58:31 +02:00
|
|
|
"use strict";
|
|
|
|
|
2018-10-03 22:27:13 +02:00
|
|
|
|
|
|
|
|
2018-10-10 19:56:35 +02:00
|
|
|
// U T I L
|
2018-10-03 22:27:13 +02:00
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
import linkGrid from "./link-grid";
|
2018-10-03 22:27:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// E X P O R T
|
|
|
|
|
|
|
|
export default () => linkGrid([{
|
|
|
|
description: "Read the formal specification for LBRY.",
|
2019-01-29 17:23:46 +01:00
|
|
|
destination: "/spec",
|
|
|
|
label: "Study the Spec",
|
|
|
|
title: "LBRY Specification"
|
2018-10-03 22:27:13 +02:00
|
|
|
}, {
|
|
|
|
description: "Can you code, design, write or test? Join us!",
|
|
|
|
destination: "/contribute",
|
|
|
|
label: "Read the Guide",
|
|
|
|
title: "Contributor's Guide"
|
|
|
|
}, {
|
|
|
|
description: "Method signatures and examples for lbry-sdk, the most common way to build on LBRY.",
|
|
|
|
destination: "/api/sdk",
|
|
|
|
label: "SDK APIs",
|
|
|
|
title: "SDK APIs"
|
|
|
|
}, {
|
|
|
|
description: "Method signatures and examples for lbrycrd, the LBRY blockchain.",
|
|
|
|
destination: "/api/blockchain",
|
|
|
|
label: "Blockchain APIs",
|
|
|
|
title: "Blockchain APIs"
|
|
|
|
}]);
|