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 */}