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