Add Dogs and Bunny puzzle
Recreate the Dogs and Bunny puzzle with functionality for random puzzle generation at varying difficulty levels (easy, medium, hard). Allow users to screenshot puzzles or solutions. Implement puzzle sharing via URL parameters.
This commit is contained in:
parent
81f6873c4d
commit
61feaaf9e9
6 changed files with 553 additions and 1 deletions
17
src/pages/DogsBunnyPuzzlePage.tsx
Normal file
17
src/pages/DogsBunnyPuzzlePage.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import React from "react";
|
||||
import Layout from "@/components/Layout";
|
||||
import DogsBunnyPuzzle from "@/components/DogsBunnyPuzzle";
|
||||
|
||||
const DogsBunnyPuzzlePage: React.FC = () => {
|
||||
return (
|
||||
<Layout>
|
||||
<main className="py-10 px-4">
|
||||
<div className="max-w-6xl mx-auto space-y-4">
|
||||
<DogsBunnyPuzzle />
|
||||
</div>
|
||||
</main>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
export default DogsBunnyPuzzlePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue