Add CLI app, Go library (#124)

This commit is contained in:
mrusme 2023-01-11 19:49:13 -05:00 committed by GitHub
parent b860521195
commit 3a829d33cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View file

@ -128,6 +128,24 @@ export class Apps extends Component<any, any> {
</div>
</div>
<h1>{i18n.t("cli_apps")}</h1>
<div class="row">
<div class="card col-6">
<AppDetails
name="neonmodem"
description="BBS-style TUI client"
link="https://github.com/mrusme/neonmodem"
banner="/static/assets/images/neonmodem.webp"
links={[
{
link: "https://github.com/mrusme/neonmodem",
icon: "github",
},
]}
/>
</div>
<h1>{i18n.t("api_libraries")}</h1>
<ul>
<li>
@ -142,6 +160,12 @@ export class Apps extends Component<any, any> {
</a>{" "}
- a dart / flutter client.
</li>
<li>
<a href="https://github.com/Arsen6331/go-lemmy">
go-lemmy
</a>{" "}
- a Go client.
</li>
</ul>
</div>
</div>