feat: add games

This commit is contained in:
2024-08-24 20:52:29 -07:00
parent 8feb4700a1
commit 516a022553
4 changed files with 79 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import { Certification } from "@/components/cert";
import { Game } from "@/components/game";
import { Rule } from "@/components/rule";
import { Certifications } from "@/config/Certifications";
import { Games } from "@/config/Games";
import { Charm } from "next/font/google";
const Gamez = (): JSX.Element => {
return (
<>
<main className="w-[95%] text-center max-w-4xl m-auto mt-16 mb-16 rounded-lg">
<h1 className="text-5xl">Games</h1>
<section>
<p className="mb-2">See how Naomi has appeared in various games.</p>
<Rule />
<div className="grid sm:grid-cols-2 lg:grid-cols-3 grid-cols-1 gap-y-5">
{Games.map((game) => (
<Game key={game.name} name={game.name} img={game.img} />
))}
</div>
</section>
</main>
</>
);
};
export default Gamez;