/** @jsx h */ import { FunctionComponent, h } from "https://esm.sh/preact@10.17.1"; import { tw } from "https://esm.sh/twind@0.16.16"; import { Avatar } from "./components/avatar.tsx"; type AppListItem = { picture?: string; title: string; subTitle: string; url: string; }; const AppListData: AppListItem[] = [ { picture: "https://info.coracle.social/images/logo.png", title: "Coracle", subTitle: "Escape the walled gardens and make social media work for you.", url: "https://app.coracle.social", }, { picture: "https://getalby.com/alby_icon_yellow_128x128.png", title: "Alby", subTitle: "Your Bitcoin & Nostr companion for the web.", url: "https://getalby.com", }, { title: "Habla", subTitle: "Habla is a nostr-based web app that enables anyone to earn from their writing.", url: "https://habla.news/", }, { picture: "https://flycat.club/logo512.png", title: "Flycat", subTitle: "A Nostr blogging client", url: "https://flycat.club/", }, ]; export const AppList: FunctionComponent = () => { return (
); };