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 ( <>