From 4d6914400280134ac493fb3c41a9c164ebf60fa2 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 19 Dec 2025 22:59:30 +0100 Subject: [PATCH] feat(home): add greeting that replaces gamepak --- app/components/Home/BottomScreen/Buttons.vue | 14 ++++++++++++++ i18n/locales/en.json | 3 +++ .../home/bottom-screen/buttons/gamePak.png | Bin 0 -> 34340 bytes 3 files changed, 17 insertions(+) create mode 100644 public/images/home/bottom-screen/buttons/gamePak.png diff --git a/app/components/Home/BottomScreen/Buttons.vue b/app/components/Home/BottomScreen/Buttons.vue index f019ec5..f3ed0d1 100644 --- a/app/components/Home/BottomScreen/Buttons.vue +++ b/app/components/Home/BottomScreen/Buttons.vue @@ -64,6 +64,13 @@ const getOpacity = (button?: (typeof selectedButton)["value"]) => { if (store.isOutro) return store.outro.stage1Opacity; return 1; }; + +useRender((ctx) => { + ctx.globalAlpha = getOpacity(); + ctx.font = "10px NDS10"; + ctx.fillStyle = "#a2a2a2"; + fillTextCentered(ctx, $t("home.greeting"), 79, 135, 140); +});