changelog:

backend:
- Change index POST requests to GET requests

frontend:
- Fetch releases from api endpoint on index page.
- Add filters on main page.
- Remove tailwindcss
This commit is contained in:
Kentai Radiquum 2024-04-20 00:39:15 +05:00
parent b8878c4fb8
commit 37d4b181f5
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
10 changed files with 131 additions and 1316 deletions

View file

@ -0,0 +1,17 @@
"use client";
import Link from "next/link";
export const ReleaseCard = (props) => {
return (
<Link href={`/release/${props.id}`} className="s3">
<article className="no-padding round fill" style={{"aspectRatio": "9/16"}}>
<img className="responsive large top-round" src={props.poster} />
<div className="padding">
<h6>{props.title}</h6>
<p>{props.description}</p>
</div>
</article>
</Link>
);
};