import { Link } from 'react-router-dom' import '../styles/cardMod.css' import { handleModImageError } from '../utils' type ModCardProps = { title: string gameName: string summary: string imageUrl: string route: string } export const ModCard = ({ title, gameName, summary, imageUrl, route }: ModCardProps) => { return (

{title}

{summary}

{gameName}

420

420

420

420

) }