Search by username to find and add someone to your friends list.
Start typing to search for people
// 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){}