Add Chessboard Repaint Puzzle - a challenging parity puzzle

This commit is contained in:
Neeldhara Misra 2025-07-22 04:50:42 +05:30
parent d9c0c88333
commit f8fd9ac4d8
5 changed files with 411 additions and 2 deletions

View file

@ -0,0 +1,12 @@
import React from 'react';
import ChessboardRepaintPuzzle from '@/components/ChessboardRepaintPuzzle';
const ChessboardRepaintPuzzlePage = () => {
return (
<div className="min-h-screen bg-background">
<ChessboardRepaintPuzzle showSocialShare={true} />
</div>
);
};
export default ChessboardRepaintPuzzlePage;