diff --git a/app/client.js b/app/client.js index 566f813..1bd34f5 100755 --- a/app/client.js +++ b/app/client.js @@ -37,7 +37,6 @@ function main() { app.use(ssr()); app.route("/", page(require("./views/home"))); - app.route("/api", page(require("./views/api"))); app.route("/api/*", page(require("./views/api"))); app.route("/*", page(require("./views/redirect"))); diff --git a/app/components/api/header-blockchain.js b/app/components/api/header-blockchain.js new file mode 100644 index 0000000..301b016 --- /dev/null +++ b/app/components/api/header-blockchain.js @@ -0,0 +1,15 @@ +"use strict"; + +import html from "choo/html"; + +export default () => { + return html` +
+

lbrycrd APIs

+

+ Methods and signatures provided by the lbrycrd blockchain daemon are documented below. + To build, download, or run lbrycrd, see the project README. +

+
+ `; +}; diff --git a/app/components/api/header-sdk.js b/app/components/api/header-sdk.js new file mode 100644 index 0000000..694a66e --- /dev/null +++ b/app/components/api/header-sdk.js @@ -0,0 +1,15 @@ +"use strict"; + +import html from "choo/html"; + +export default () => { + return html` +
+

lbry-sdk APIs

+

+ Methods and signatures provided by the lbry-sdk daemon are documented below. + To build, download, or run the daemon, see the project README. +

+
+ `; +}; diff --git a/app/components/ecosystem/module-lbry.js b/app/components/ecosystem/module-lbry.js index 7af3b27..561bf8f 100644 --- a/app/components/ecosystem/module-lbry.js +++ b/app/components/ecosystem/module-lbry.js @@ -35,7 +35,7 @@ module.exports = exports = () => `

Additional Resources