From 33af6fce4072692bd152df5e7a6fc8e94c73ad9b Mon Sep 17 00:00:00 2001 From: Lucian Petri Date: Tue, 27 Dec 2022 13:55:19 +0200 Subject: [PATCH] removing UserChoice --- website/src/components/UserChoice.tsx | 51 --------------------------- 1 file changed, 51 deletions(-) delete mode 100644 website/src/components/UserChoice.tsx 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;