Add The Gold Coin Game - a strategic two-player game where players move coins to acquire the gold coin

This commit is contained in:
Neeldhara Misra 2025-07-22 03:44:16 +05:30
parent 6af3ec81ef
commit 4f27765251
5 changed files with 399 additions and 0 deletions

View file

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