Welcome to ANIMUS
Take the assessment to build your profile.
Take Test →
Friends
+ Add friend
No friends yet — add someone to get started
Activity
Activity from friends will appear here
// Smart logo: dashboard if logged in, landing if not try { firebase.auth().onAuthStateChanged(function(user){ document.querySelectorAll('a.nav-logo,a.panel-logo,a.footer-logo,a.mobile-logo').forEach(function(el){ el.href = user ? '/dashboard' : '/'; }); }); } catch(e){}