Refactor index page

Display all interactives and redesign using cards.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-21 07:58:37 +00:00
parent 030c188ab3
commit a649d2fc41
5 changed files with 174 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import BalancedTernaryGame from '@/components/BalancedTernaryGame';
const BalancedTernaryGamePage = () => {
return (
<div className="min-h-screen bg-background p-6">
<div className="max-w-4xl mx-auto">
<BalancedTernaryGame />
</div>
</div>
);
};
export default BalancedTernaryGamePage;