2021-03-15 17:18:03 +00:00
|
|
|
import { Component } from "inferno";
|
|
|
|
import { AppDetails } from "./app-details";
|
|
|
|
import { Helmet } from "inferno-helmet";
|
2021-03-22 13:22:23 +00:00
|
|
|
import { i18n } from "../i18next";
|
2021-03-15 17:18:03 +00:00
|
|
|
|
2021-03-22 13:22:23 +00:00
|
|
|
const title = i18n.t("apps_title");
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
export class Apps extends Component<any, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Helmet title={title}>
|
|
|
|
<meta property={"title"} content={title} />
|
|
|
|
</Helmet>
|
|
|
|
<div class="container">
|
2021-03-22 13:22:23 +00:00
|
|
|
<h1>{i18n.t("lemmy_apps")}</h1>
|
|
|
|
<p>{i18n.t("choose_from_apps")}</p>
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="card col-6">
|
|
|
|
<AppDetails
|
2022-01-28 23:05:15 +00:00
|
|
|
name="Lemmur"
|
2021-03-15 17:18:03 +00:00
|
|
|
description="A Lemmy client for Android, Linux, and Windows."
|
2021-12-06 13:16:33 +00:00
|
|
|
link="https://github.com/LemmurOrg/lemmur"
|
2021-03-15 17:18:03 +00:00
|
|
|
icon="/static/assets/images/lemmur.svg"
|
|
|
|
banner="/static/assets/images/lemmur_screen.webp"
|
|
|
|
links={[
|
|
|
|
{
|
|
|
|
link: "https://f-droid.org/packages/com.krawieck.lemmur",
|
|
|
|
icon: "f-droid",
|
|
|
|
},
|
|
|
|
{
|
2022-01-28 23:05:15 +00:00
|
|
|
link: "https://play.google.com/store/apps/details?id=com.krawieck.lemmur",
|
2021-03-15 17:18:03 +00:00
|
|
|
icon: "googleplay",
|
|
|
|
},
|
|
|
|
{
|
2021-12-06 13:16:33 +00:00
|
|
|
link: "https://github.com/LemmurOrg/lemmur",
|
2021-03-15 17:18:03 +00:00
|
|
|
icon: "github",
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card col-6">
|
|
|
|
<AppDetails
|
2022-01-28 23:05:15 +00:00
|
|
|
name="Jerboa"
|
|
|
|
description="A native Android app made by Lemmy's developers"
|
|
|
|
link="https://github.com/dessalines/jerboa"
|
|
|
|
icon="/static/assets/images/jerboa.svg"
|
|
|
|
banner="/static/assets/images/jerboa_screen.webp"
|
|
|
|
links={[
|
|
|
|
{
|
|
|
|
link: "https://f-droid.org/en/packages/com.jerboa",
|
|
|
|
icon: "f-droid",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
link: "https://play.google.com/store/apps/details?id=com.jerboa",
|
|
|
|
icon: "googleplay",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
link: "https://github.com/dessalines/jerboa",
|
|
|
|
icon: "github",
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card col-6">
|
|
|
|
<AppDetails
|
|
|
|
name="Remmel"
|
2021-03-15 17:18:03 +00:00
|
|
|
description="An iOS client for lemmy."
|
|
|
|
link="https://github.com/uuttff8/Lemmy-iOS"
|
|
|
|
icon="/static/assets/images/remmel.webp"
|
|
|
|
banner="/static/assets/images/remmel_screen.webp"
|
|
|
|
links={[
|
|
|
|
{
|
2022-01-28 23:05:15 +00:00
|
|
|
link: "https://apps.apple.com/us/app/remmel-for-lemmy/id1547988171",
|
2021-03-15 17:18:03 +00:00
|
|
|
icon: "appleinc",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
link: "https://github.com/uuttff8/Lemmy-iOS",
|
|
|
|
icon: "github",
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-22 13:22:23 +00:00
|
|
|
<h1>{i18n.t("web_apps")}</h1>
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="card col-6">
|
|
|
|
<AppDetails
|
|
|
|
name="lemmy-ui"
|
|
|
|
description="The official web app for lemmy."
|
|
|
|
link="https://github.com/LemmyNet/lemmy-ui"
|
|
|
|
banner="/static/assets/images/mobile_pic.webp"
|
|
|
|
links={[
|
|
|
|
{
|
|
|
|
link: "https://github.com/LemmyNet/lemmy-ui",
|
|
|
|
icon: "github",
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card col-6">
|
|
|
|
<AppDetails
|
|
|
|
name="lemmy-lite"
|
|
|
|
description="A static, JSless, touch-friendly Lemmy frontend built for legacy web clients and maximum performance"
|
|
|
|
link="https://github.com/IronOxidizer/lemmy-lite"
|
|
|
|
banner="/static/assets/images/lemmy_lite_screen.webp"
|
|
|
|
links={[
|
|
|
|
{
|
|
|
|
link: "https://github.com/IronOxidizer/lemmy-lite",
|
|
|
|
icon: "github",
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-22 13:22:23 +00:00
|
|
|
<h1>{i18n.t("api_libraries")}</h1>
|
2021-03-15 17:18:03 +00:00
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="https://github.com/LemmyNet/lemmy-js-client">
|
|
|
|
lemmy-js-client
|
|
|
|
</a>{" "}
|
|
|
|
- a javascript / typescript client.
|
|
|
|
</li>
|
|
|
|
<li>
|
2021-12-06 13:16:33 +00:00
|
|
|
<a href="https://github.com/LemmurOrg/lemmy_api_client">
|
2021-03-15 17:18:03 +00:00
|
|
|
lemmy-dart client
|
|
|
|
</a>{" "}
|
|
|
|
- a dart / flutter client.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|