Skip to content
Snippets Groups Projects
Commit 4588d6c3 authored by jsk22's avatar jsk22
Browse files

Issue #306: ADD Nicolas Photo

parent 190b1983
No related branches found
No related tags found
1 merge request!294Issue/271.1 create new backend routes connection
......@@ -106,6 +106,14 @@ export default function AccountMenu() {
window.location.reload();
};
useEffect(() => {
let token = getStoredValue("access_token");
if (token) {
let user = getStoredValue("user_data");
setDataUser(JSON.parse(user));
}
}, []);
return (
<>
{loggedIn ? (
......
......@@ -207,6 +207,21 @@ const team = [
filter: "UFPR",
active: true,
},
{
name: "Nicolas Rizzardi",
image: "https://mecred.c3sl.ufpr.br/team-photos/Nicolas_Rizzardi.png",
info: "Desenvolvimento",
links: {
MecRed: "https://mecred.mec.gov.br/perfil/42599",
Lattes: "http://lattes.cnpq.br/6435898346121114",
Linkedin: "https://www.linkedin.com/in/nicolas-rizzardi-9140971a4",
Outro: "https://github.com/NARizzardi",
},
details: `Nicolas Rizzardi é graduando em Ciência da Computação pela Universidade Federal do Paraná (UFPR). Foi bolsista do C3SL atuando como
desenvolvedor na plataforma MECRED.`,
filter: "UFPR",
active: false,
},
]
......
......@@ -68,7 +68,6 @@ export function logOut() {
export function userData() {
const dataString = localStorage.getItem('user_data');
if (!dataString)
return undefined;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment