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;