refactor: profile page recently watched

This commit is contained in:
Kentai Radiquum 2025-03-26 01:08:59 +05:00
parent 1530fa3937
commit 967b9cfbb0
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 37 additions and 21 deletions

View file

@ -31,16 +31,6 @@ export const ReleaseSection = (props: {
);
})}
</div>
{/* <div className="lg:justify-center lg:grid-cols-[repeat(auto-fit,minmax(400px,1fr))] gap-4 lg:gap-2 min-w-full flex flex-col lg:grid">
{props.content.map((release) => {
return (
<div key={release.id} className="w-full h-full lg:aspect-video">
<ReleaseLink {...release} />
</div>
);
})}
{props.content.length == 1 && <div></div>}
</div> */}
</div>
</section>
);