Translate to pt, fix some ui details, add proper icon and logo

This commit is contained in:
litoral05
2026-05-11 17:17:50 +01:00
parent c1e9aeb386
commit 12358327c9
73 changed files with 529 additions and 598 deletions
+17
View File
@@ -0,0 +1,17 @@
import { apiRequest } from '@/services/apiClient';
type LoginResponse = {
authenticated: boolean;
};
export const loginApi = {
login(username: string, password: string) {
return apiRequest<LoginResponse>('/api/login', {
method: 'POST',
body: JSON.stringify({
username,
password,
}),
});
},
};