From 5edc249fb63fb12c8dda81acb38c3e52b773f6a1 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 23:57:41 +0000 Subject: [PATCH] Roadmap: insert ThemeToggle and GalaxyMap section cgen-7231c0e21fef4b8ca260b6d3b18216b3 --- client/pages/Roadmap.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/client/pages/Roadmap.tsx b/client/pages/Roadmap.tsx index 52228597..0835fabd 100644 --- a/client/pages/Roadmap.tsx +++ b/client/pages/Roadmap.tsx @@ -160,6 +160,20 @@ export default function Roadmap() { +
+
+ + ({ + id: id as Quest["phase"], + label: id === "now" ? "Now" : id === "month1" ? "Month 1" : id === "month2" ? "Month 2" : "Month 3", + percent: phaseTotals[id]?.total ? Math.round((phaseTotals[id].earned / phaseTotals[id].total) * 100) : 0, + }))} + onSelect={(id) => setFocusedPhase(id)} + /> +
+
+ {/* Phases */}