mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 09:59:41 +05:00
frontend: add user profile page
This commit is contained in:
parent
32a4da1a31
commit
320a36d27e
5 changed files with 194 additions and 3 deletions
|
@ -3,10 +3,13 @@ import Image from "next/image";
|
|||
|
||||
export const ReleaseCard = (props) => {
|
||||
return (
|
||||
<Link href={`/release/${props.id}`} className="s3">
|
||||
<Link
|
||||
href={`/release/${props.id}`}
|
||||
className={props.className ? props.className : "s3"}
|
||||
>
|
||||
<article
|
||||
className="no-padding round fill"
|
||||
style={{ width: 284, height: 508 }}
|
||||
style={{ width: 284, height: props.height ? props.height : 508 }}
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<div style={{ aspectRatio: "1/1" }}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue