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

39 lines
604 B
JavaScript

"use strict";
// U T I L S
import {
applications,
chainquery,
lbry,
lbrycrd,
lighthouse,
reflector,
wallet
} from "./ecosystem/index.js";
// E X P O R T
export default async () => `
<section class="ecosystem">
<aside class="ecosystem__submodules">
${await chainquery()}
${await wallet()}
</aside>
<section class="ecosystem__modules">
${await lbrycrd()}
${await lbry()}
${await applications()}
</section>
<aside class="ecosystem__submodules">
${await lighthouse()}
${await reflector()}
</aside>
</section>
`;