diff --git a/website/src/components/UserChoice.tsx b/website/src/components/UserChoice.tsx deleted file mode 100644 index c2fa079e..00000000 --- a/website/src/components/UserChoice.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import { Card, CardBody, Flex, Heading } from "@chakra-ui/react"; -import Link from "next/link"; -import React from "react"; -import Image from "next/image"; - -const UserChoice = () => { - return ( - - - - - ); -}; - -type ChoiceProps = { - img?: string; - alt: string; - title: string; - link: string; -}; - -const Choice = (props: ChoiceProps) => { - const { img, title, link } = props; - // NEXT STEPS: FIND BETTER IMAGES AND USE img PROP AS SRC - return ( - - - - - LAION Logo - - {title} - - - - - - ); -}; - -export default UserChoice;