mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
29 lines
741 B
JavaScript
29 lines
741 B
JavaScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import Image from "next/image";
|
|
|
|
export const ReleaseCard = (props) => {
|
|
return (
|
|
<Link href={`/release/${props.id}`} className="s3">
|
|
<article
|
|
className="no-padding round fill"
|
|
style={{ width: 284, height: 508 }}
|
|
>
|
|
<Image
|
|
className="responsive large top-round"
|
|
src={props.poster}
|
|
alt=""
|
|
/>
|
|
<div className="padding">
|
|
<h6>{`${props.title.substring(0, 36)}${
|
|
[...props.title].length > 36 ? "..." : ""
|
|
}`}</h6>
|
|
<p>{`${props.description}${
|
|
[...props.description].length > 160 ? "..." : ""
|
|
}`}</p>
|
|
</div>
|
|
</article>
|
|
</Link>
|
|
);
|
|
};
|