feat: add standalone Nim game page, route, and container layout; remove global header/footer from /games/nim
This commit is contained in:
parent
bfa6e66450
commit
3705152d34
5 changed files with 69 additions and 8 deletions
12
src/pages/NimGamePage.tsx
Normal file
12
src/pages/NimGamePage.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue