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

{title}

{summary}

420

420

420

) }