import Link from "next/link"; import { Chip } from "#/components/Chip/Chip"; import Image from "next/image"; export const CollectionLink = (props: any) => { return (
{props.title}
{`${props.description.slice(0, 125)}${ props.description.length > 125 ? "..." : "" }`}
)}