tech.lbry.org/app/components/resources-link-grid.js
2025-04-23 02:31:18 +02:00

32 lines
922 B
JavaScript

// U T I L
import linkGrid from "./link-grid.js";
// E X P O R T
export default () => linkGrid([{
description: "Read the formal specification for LBRY.",
destination: "/spec",
label: "Study the Spec",
title: "LBRY Specification"
}, {
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"
}, {
description: "Can you code, design, write or test? Join us!",
destination: "/contribute",
label: "Learn To Contribute",
title: "Contributor's Guide"
}, {
description: "Want to build your own dApp or auxiliary service? Start here!",
destination: "/build",
label: "Build An App",
title: "Builder's Guide"
}]);