import { Title, Meta } from "@solidjs/meta"; import { A } from "@solidjs/router"; import DownloadOnAppStore from "~/components/icons/DownloadOnAppStore"; import GitHub from "~/components/icons/GitHub"; import LinkedIn from "~/components/icons/LinkedIn"; 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)); }; const joinBetaPrompt = () => { window.alert( "This isn't released yet, if you would like to help test, please go the contact page and include the game and platform you would like to help test in the message. Otherwise the apk is available for direct install. Thanks!" ); }; return ( <> Downloads | Michael Freno
Downloads
Life and Lineage
Android (apk only)
Note the android version is not well tested, and has performance issues.
Or
(Coming soon)
iOS
Shapes with Abigail!
(apk and iOS)
Android
Or
(Coming soon)
iOS
Cork
(macOS 13 Ventura or later)
Just unzip and drag into 'Applications' folder
); }