import Link from "next/link"; import Image from "next/legacy/image"; export const ReleaseList = (props) => { return (
{`${props.title.substring(0, 90)}${ [...props.title].length > 90 ? "..." : "" }`}

{`${props.description.substring(0, 170)}${ [...props.description].length > 170 ? "..." : "" }`}

); };