Updated the styles to use Pico-css

This commit is contained in:
Brian McGonagill 2026-03-19 06:10:30 -05:00
parent d32233a20a
commit 9acde36f50
18 changed files with 691 additions and 2126 deletions

View file

@ -30,8 +30,10 @@ export const gameService = {
create: (data: Partial<Game>) => api.post<Game>('/games', data),
update: (id: string, data: Partial<Game>) => api.put<Game>(`/games/${id}`, data),
delete: (id: string) => api.delete(`/games/${id}`),
publish: (id: string) => api.post<Game>(`/${id}/publish`),
end: (id: string) => api.post<Game>(`/${id}/end`),
publish: (id: string) => api.post<Game>(`/games/${id}/publish`),
end: (id: string) => api.post<Game>(`/games/${id}/end`),
archive: (id: string) => api.post<Game>(`/games/${id}/archive`),
unarchive: (id: string) => api.post<Game>(`/games/${id}/unarchive`),
getInvite: (id: string) => api.get<{ inviteCode: string }>(`/games/${id}/invite`),
};