So I have my RootLayout which contains a <Navbar> component that takes a "user" prop and isLogged prop. When a user logs in to my site, I want the navbar to change to display the username and some other data from this "user" prop.
However, my login page is a lower level component so how would I pass the props up to my RootLayout? Or is there some other way for me to go about this?