From 2e7529ee9663900741b4d949c2c79e0fb1f0064d Mon Sep 17 00:00:00 2001 From: tknkaa Date: Sat, 3 Jan 2026 19:38:42 +0900 Subject: [PATCH] style: make start page look good --- app/routes/_index.tsx | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 2dfbe27..96faf53 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -6,25 +6,37 @@ export default function Page() { const anonymousLoginAndStart = async () => { const user = await authClient.getSession(); if (user.data) { - const _user = await authClient.signOut(); + await authClient.signOut(); } - const _user = await authClient.signIn.anonymous(); + await authClient.signIn.anonymous(); navigate("/play"); }; return ( - <> -

Hitori Mahjong

-
- - - Login + + ログイン - - Learn How to Play + + チュートリアル
- + ); }