import { Link as Anchor, Button, Heading, Table, Td, Th, VStack, chakra, Text, Tr, HStack, } from "@chakra-ui/react"; import { GridMultiplexAd } from "components/special"; import NavLink from "next/link"; const baseURL = "https://nightly.link/KRTirtho/spotube/workflows/spotube-nightly/build/"; const DownloadLinks = Object.freeze({ Linux: baseURL + "Spotube-Linux-Bundle.zip", Android: baseURL + "Spotube-Android-Bundle.zip", Windows: baseURL + "Spotube-Windows-Bundle.zip", MacOS: baseURL + "Spotube-Macos-Bundle.zip", }); function NightlyDownloads() { return ( <> Nightly Release Download latest & most bleeding edge version of Spotube Disclaimer!: Nightly versions are untested and not the final version of spotube. So it can consists of many hidden or unknown bugs but at the same time will be opted with latest & greatest features too. So use it at your own risk! If you don't know what you're doing than we recommend you to download the{" "} latest stable version of {" "} Spotube {Object.entries(DownloadLinks).map(([platform, url]) => { const segments = url.split("/"); return ( {platform} {segments.at(segments.length - 1)?.replace("build", "")} ); })} ); } export default NightlyDownloads;