+
+
+ ({
+ 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 */}