Refactor index page
Display all interactives and redesign using cards.
This commit is contained in:
parent
030c188ab3
commit
a649d2fc41
5 changed files with 174 additions and 0 deletions
13
src/pages/TernaryNumberGamePage.tsx
Normal file
13
src/pages/TernaryNumberGamePage.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import TernaryNumberGame from '@/components/TernaryNumberGame';
|
||||
|
||||
const TernaryNumberGamePage = () => {
|
||||
return (
|
||||
<div className="min-h-screen bg-background p-6">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<TernaryNumberGame />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default TernaryNumberGamePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue