feat: add donate/discord nav buttons and fix runestone display

Adds Donate and Discord link buttons to the resource bar nav. Also
fixes a display discrepancy where the resource bar showed
resources.runestones (always 0) instead of the actual prestige
runestone balance from prestige.runestones.

 This feature was implemented with help from Hikari~ 🌸
This commit is contained in:
2026-03-07 00:21:13 -08:00
committed by Naomi Carrigan
parent b27454669e
commit b0ed976a1d
2 changed files with 24 additions and 4 deletions
@@ -61,6 +61,7 @@ export const GameLayout = (): React.JSX.Element => {
<div className="game-layout">
<ResourceBar
resources={state.resources}
runestones={state.prestige.runestones}
prestigeCount={state.prestige.count}
profileUrl={profileUrl}
onEditProfile={() => { setEditingProfile(true); }}