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

View file

@ -90,6 +90,15 @@ const allInteractives: Interactive[] = [
path: '/knights-puzzle',
theme: 'Puzzles',
dateAdded: '2024-07-21'
},
{
id: 'nim',
title: 'Game of Nim',
description: 'A classic two-player game of strategy. Take turns removing stones from heaps. The player to take the last stone wins!',
tags: ['strategy', 'two-player', 'math', 'logic', 'game-theory'],
path: '/games/nim',
theme: 'Games',
dateAdded: '2024-07-21'
}
];