Add Dogs & Bunny puzzle

Recreate the Dogs & Bunny puzzle with random puzzle generation, difficulty levels, screenshot functionality, and shareable URL parameters.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-10 05:32:16 +00:00
parent c257a5f531
commit f33b2bfa4f
6 changed files with 669 additions and 0 deletions

View file

@ -55,6 +55,16 @@ const Puzzles = () => {
difficulty: "Intermediate" as const,
duration: "5-15 min",
participants: "1 player"
},
{
id: "dogs-bunny",
title: "Dogs & Bunny Puzzle",
description: "Guide bunnies to the carrot and the dog to the bone using conditional movement rules. A graph traversal puzzle!",
path: "/puzzles/dogs-bunny",
tags: ["Graph Theory", "Logic", "Pathfinding", "Animals"],
difficulty: "Intermediate" as const,
duration: "10-25 min",
participants: "1 player"
}
];