feat: add standalone Nim game page, route, and container layout; remove global header/footer from /games/nim

This commit is contained in:
Neeldhara Misra 2025-07-22 02:40:47 +05:30
parent bfa6e66450
commit 3705152d34
5 changed files with 69 additions and 8 deletions

12
src/pages/NimGamePage.tsx Normal file
View file

@ -0,0 +1,12 @@
import React from 'react';
import NimGame from '@/components/NimGame';
const NimGamePage = () => {
return (
<div className="container mx-auto px-4 py-8">
<NimGame />
</div>
);
};
export default NimGamePage;