import {
Link as Anchor,
Heading,
VStack,
chakra,
Box,
Flex,
Stack,
HStack,
useColorModeValue,
} from "@chakra-ui/react";
import NavLink from "next/link";
// import { GridMultiplexAd } from "components/special";
import { GiBackwardTime } from "react-icons/gi";
import { FiPackage } from "react-icons/fi";
import { HiOutlineSparkles } from "react-icons/hi";
import { useRouter } from "next/router";
import { FC } from "react";
function OtherDownloads() {
const router = useRouter();
return (
<>
Other ways to install?
Here's some alternative ways & versions of Spotube that you
can install try out
}
>
Package Managers & AppStores
}
color={useColorModeValue("red.500", "red.200")}
bgColor={useColorModeValue("red.100", "red.800")}
>
Nightly versions
}
>
Previous versions
(Nightly releases)
{/* */}
>
);
}
export default OtherDownloads;
interface OtherDownloadLinkItemType {
href: string;
icon: React.ReactNode;
color?: string;
bgColor?: string;
children: React.ReactNode;
}
const OtherDownloadLinkItem: FC = ({
href,
icon,
color,
bgColor,
children,
}) => {
const router = useRouter();
const dColor = useColorModeValue("blue.500", "blue.200");
const dBColor = useColorModeValue("blue.100", "blue.800");
return (
{icon}
{children}
);
};