diff --git a/frontend/src/pages/download.tsx b/frontend/src/pages/download.tsx deleted file mode 100644 index 306152c57..000000000 --- a/frontend/src/pages/download.tsx +++ /dev/null @@ -1,126 +0,0 @@ -//Icons -import { ArrowDownIcon } from "@chakra-ui/icons"; -//Chakra Imports -import { - Box, - Button, - Flex, - HStack, - Link, - Text, - useColorMode, - VStack, -} from "@chakra-ui/react"; -import { GetStaticPropsContext } from "next"; -import { NextSeo } from "next-seo"; -import Roads from "src/components/icons/Roads"; -import Announcement from "src/components/site/Announcement"; -// Server side -import { markdownSSR } from "src/mdx-helpers/ssr"; -import { MarkdownContent } from "src/mdx-helpers/types"; -//Styles -import heroStyles from "../styles/Hero.module.css"; - -interface DownloadButtonProps { - link: string; - title: string; - text: string; - disabled?: boolean; -} - -const DownloadButton = ({ link, title, text, disabled = false }: DownloadButtonProps) => { - return ( - - - - ); -}; - -const Downloads = () => { - const { colorMode } = useColorMode(); - return ( - - - -
- - - - - - - Download the server package below. Despite being out of beta, - still run in production environments at your own risk. - - - - - - - - - - - - - -
-
- ); -}; - -type Props = { - content: MarkdownContent; -}; - -const Page = ({ content }: Props) => ; - -export const getStaticProps = async ({ locale }: GetStaticPropsContext) => ({ - props: { content: await markdownSSR(locale || "en", "index") }, -}); - -export default Page;