import Link from "next/link"; import Image from "next/image"; export const ReleaseCard = (props) => { return (
{/* eslint-disable-next-line @next/next/no-img-element */}
{`${props.title.substring(0, 30)}${ [...props.title].length > 30 ? "..." : "" }`}

{`${props.description}${ [...props.description].length > 160 ? "..." : "" }`}

); };