Add onboarding flow improvements

This commit is contained in:
Urtzi Alfaro
2025-09-03 14:06:38 +02:00
parent 0fb9f9d0f0
commit a55d48e635
31 changed files with 3813 additions and 6251 deletions

View File

@@ -0,0 +1,18 @@
// Mock auth hook for testing
export const useAuth = () => {
return {
user: {
id: 'user_123',
tenant_id: 'tenant_456',
email: 'user@example.com',
name: 'Usuario Demo'
},
isAuthenticated: true,
login: async (credentials: any) => {
console.log('Mock login:', credentials);
},
logout: () => {
console.log('Mock logout');
}
};
};