diff --git a/website/src/components/UserChoice.tsx b/website/src/components/UserChoice.tsx
new file mode 100644
index 00000000..39a46aee
--- /dev/null
+++ b/website/src/components/UserChoice.tsx
@@ -0,0 +1,52 @@
+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 (
+
+
+
+
+
+
+ {title}
+
+
+
+
+
+ );
+};
+
+export default UserChoice;