mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import Link from "next/link";
|
|
import Image from "next/legacy/image";
|
|
|
|
export const ReleaseCard = (props) => {
|
|
return (
|
|
<Link
|
|
href={`/release/${props.id}`}
|
|
className={""}
|
|
style={{
|
|
width: "300px",
|
|
height: "100%",
|
|
}}
|
|
>
|
|
<article
|
|
className="small-padding round fill"
|
|
style={{
|
|
width: "100%",
|
|
height: "100%",
|
|
}}
|
|
>
|
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
<div style={{ aspectRatio: "1/1" }}>
|
|
<Image
|
|
className="responsive large top-round"
|
|
layout="fill"
|
|
style={{ aspectRatio: "1/1" }}
|
|
src={props.poster}
|
|
alt=""
|
|
sizes={"100vw"}
|
|
/>
|
|
</div>
|
|
<div className="padding">
|
|
<h5 className="small">{`${props.title.substring(0, 30)}${
|
|
[...props.title].length > 30 ? "..." : ""
|
|
}`}</h5>
|
|
<p>{`${props.description.substring(0, 150)}${
|
|
[...props.description].length > 150 ? "..." : ""
|
|
}`}</p>
|
|
</div>
|
|
</article>
|
|
</Link>
|
|
);
|
|
};
|