feat: user profile customization: username, password, and avatar (#315)

This commit is contained in:
Copilot
2025-10-26 19:06:25 +09:00
committed by GitHub
parent 6495a90317
commit 7922996845
26 changed files with 1142 additions and 79 deletions

View File

@@ -25,6 +25,7 @@ export type TokenType = {
export type TokenContextType = {
token: {
access_token: string;
expires_at: number;
user: UserType | null;
};
isSignedIn: () => boolean;
@@ -87,6 +88,7 @@ export type AdminMessages = {
export type AccountDropDownMessages = {
account: string;
profileSettings: string;
signUp: string;
signIn: string;
signOut: string;