lbry.tech/app/components/resources-link-grid.js
2018-09-30 18:15:39 -04:00

22 lines
512 B
JavaScript

"use strict";
import linkGrid from "./link-grid"
export default () => {
return linkGrid([{
title: "Whitepaper",
description: "It's a white paper",
destination: "/whitepaper",
label: "Read"
}, {
title: "Blockchain Docs",
description: "Learn how to talk to blockchain real good",
destination: "/api/blockchain",
label: "Blockchain API"
}, {
title: "LBRYnet docs",
description: "Learn wtf this is",
destination: "/api/protocol",
label: "SDK API LOL"
}]);
}