Add game cards and dev reverse proxy

This commit is contained in:
2024-05-11 13:50:52 +04:00
parent 4f8301d1e8
commit a2ea5fc409
13 changed files with 202 additions and 12 deletions

View File

@@ -7,9 +7,11 @@ export const Section = ({
}) => {
return (
// open section onClick
<section className="w-full m-5 mt-8 cursor-pointer">
<h2 className="text-4xl">{name}</h2>
<div>{children}</div>
<section className="w-full p-5 pt-8">
<h2 className="text-4xl pb-2 cursor-pointer w-fit">{name}</h2>
<div className="grid grid-cols-1 tb:grid-cols-2 lp:grid-cols-3 gap-y-10 gap-x-3">
{children}
</div>
</section>
);
};