lbry.tech/app/components/resources-link-grid.js
ポール ウェッブ 20c90187cb Uniformity
2018-10-10 12:56:35 -05:00

38 lines
865 B
JavaScript

"use strict";
// P A C K A G E
import { require as local } from "app-root-path";
// U T I L
const linkGrid = local("/app/components/link-grid").default;
// E X P O R T
export default () => linkGrid([{
description: "Read the formal specification for LBRY.",
destination: "/whitepaper",
label: "Study the Paper",
title: "Whitepaper"
}, {
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"
}]);