import Link from "next/link"; import Image from "next/legacy/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.substring(0, 150)}${ [...props.description].length > 150 ? "..." : "" }`}

); };