import '../styles/cardMod.css' type ModCardProps = { title: string summary: string backgroundLink: string handleClick: () => void } export const ModCard = ({ title, summary, backgroundLink, handleClick }: ModCardProps) => { return (

{title}

{summary}

420

420

420

) }