import { Trans } from "react-i18next"; interface CardProps { icon: string; image: string; title: string | JSX.Element; location: string | JSX.Element; handleClick: () => void; } function Card({ icon, image, title, location, handleClick }: CardProps) { return (
{title}
{location}