"use client"; import Link from "next/link"; export const ReleaseCard = (props) => { return (
{`${props.title.substring(0, 36)}${[...props.title].length > 36 ? "..." : ""}`}

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

); };