import { Title, Meta } from "@solidjs/meta"; import { A } from "@solidjs/router"; import DownloadOnAppStore from "~/components/icons/DownloadOnAppStore"; export default function DownloadsPage() { const download = (assetName: string) => { fetch(`/api/downloads/public/${assetName}`) .then((response) => response.json()) .then((data) => { const url = data.downloadURL; window.location.href = url; }) .catch((error) => console.error(error)); }; return ( <> Downloads | Michael Freno
Downloads
Life and Lineage
Android
Note the android version is not well tested, and has performance issues.
iOS
Shapes with Abigail!
(apk and iOS)
Android
iOS
Cork
(macOS 13 Ventura or later)
Just unzip and drag into 'Applications' folder
); }