import { Anchor, Text } from '@mantine/core' type Props = { title: string description: string link: string } const Card = (props: Props) => { return ( {props.title} {props.description} ) } export default Card