Refactor interactive links
Update interactive links to generate unique URLs and categorize the pebble placement interactive under "Puzzles" while removing it from "DSA" and "Games".
This commit is contained in:
parent
0c19a83999
commit
ba5dac212e
5 changed files with 19 additions and 16 deletions
|
|
@ -6,6 +6,16 @@ const Puzzles = () => {
|
|||
const navigate = useNavigate();
|
||||
|
||||
const puzzles = [
|
||||
{
|
||||
id: "pebble-placement",
|
||||
title: "Pebble Placement Strategy Game",
|
||||
description: "Place pebbles following specific rules to reach the furthest position possible. A strategic optimization puzzle!",
|
||||
path: "/puzzles/pebble-placement",
|
||||
tags: ["Strategy", "Logic", "Placement", "Optimization"],
|
||||
difficulty: "Intermediate" as const,
|
||||
duration: "5-15 min",
|
||||
participants: "1 player"
|
||||
},
|
||||
{
|
||||
id: "sikinia-parliament",
|
||||
title: "Parliament of Sikinia Puzzle",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue