diff --git a/apps/api/src/routes/about.ts b/apps/api/src/routes/about.ts index afbb159..865048d 100644 --- a/apps/api/src/routes/about.ts +++ b/apps/api/src/routes/about.ts @@ -6,7 +6,7 @@ import type { AboutResponse, GiteaRelease } from "@elysium/types"; const __dirname = dirname(fileURLToPath(import.meta.url)); const { version: API_VERSION } = JSON.parse( - readFileSync(join(__dirname, "../../package.json"), "utf-8"), + readFileSync(join(__dirname, "../../../package.json"), "utf-8"), ) as { version: string }; const GITEA_RELEASES_URL = diff --git a/apps/web/src/components/game/ClickArea.tsx b/apps/web/src/components/game/ClickArea.tsx index 9ae2d8a..da448e4 100644 --- a/apps/web/src/components/game/ClickArea.tsx +++ b/apps/web/src/components/game/ClickArea.tsx @@ -60,6 +60,9 @@ export const ClickArea = (): React.JSX.Element => { ))}
+{formatNumber(clickPower)} gold/click
++ β οΈ Early Access β this build is subject to change. We reserve the right to reset all progress at any time during early access as needed to facilitate development. +
); }; diff --git a/apps/web/src/components/game/GameLayout.tsx b/apps/web/src/components/game/GameLayout.tsx index c229aaf..886d877 100644 --- a/apps/web/src/components/game/GameLayout.tsx +++ b/apps/web/src/components/game/GameLayout.tsx @@ -31,14 +31,14 @@ const BASE_TABS: { id: Tab; label: string }[] = [ { id: "quests", label: "π Quests" }, { id: "bosses", label: "πΉ Bosses" }, { id: "equipment", label: "π‘οΈ Equipment" }, - { id: "achievements", label: "π Achievements" }, + { id: "exploration", label: "πΊοΈ Exploration" }, + { id: "crafting", label: "βοΈ Crafting" }, + { id: "daily", label: "π Daily" }, { id: "prestige", label: "β Prestige" }, { id: "transcendence", label: "π Transcendence" }, { id: "apotheosis", label: "β¨ Apotheosis" }, - { id: "exploration", label: "πΊοΈ Exploration" }, - { id: "crafting", label: "βοΈ Crafting" }, { id: "statistics", label: "π Statistics" }, - { id: "daily", label: "π Daily" }, + { id: "achievements", label: "π Achievements" }, { id: "codex", label: "π Codex" }, { id: "about", label: "βΉοΈ About" }, ]; diff --git a/apps/web/src/styles.css b/apps/web/src/styles.css index 68caeee..6091066 100644 --- a/apps/web/src/styles.css +++ b/apps/web/src/styles.css @@ -2874,3 +2874,15 @@ body { color: var(--colour-text-muted); font-size: 0.9rem; } + +.early-access-notice { + background: rgba(255, 180, 0, 0.08); + border: 1px solid rgba(255, 180, 0, 0.35); + border-radius: 6px; + color: var(--colour-text-muted); + font-size: 0.75rem; + line-height: 1.4; + margin-top: 0.75rem; + padding: 0.5rem 0.75rem; + text-align: center; +}