mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
34 lines
1,021 B
JavaScript
34 lines
1,021 B
JavaScript
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 }}
|
|
>
|
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
<div style={{ aspectRatio: "1/1" }}>
|
|
<Image
|
|
className="responsive large top-round"
|
|
layout="fill"
|
|
objectFit="cover"
|
|
style={{ width: "100%", height: "100%", aspectRatio: "1/1" }}
|
|
src={props.poster}
|
|
alt=""
|
|
sizes={"100vw"}
|
|
/>
|
|
</div>
|
|
<div className="padding">
|
|
<h6>{`${props.title.substring(0, 30)}${
|
|
[...props.title].length > 30 ? "..." : ""
|
|
}`}</h6>
|
|
<p>{`${props.description}${
|
|
[...props.description].length > 160 ? "..." : ""
|
|
}`}</p>
|
|
</div>
|
|
</article>
|
|
</Link>
|
|
);
|
|
};
|