REACT LOGO #48
-
Hi, Great work. How can I change the small react logo in the menu bar and the big react logo turn around itself on the main screen? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thank you! I hope you got this figured out. Right now there are two navbars, but I think they could be combined into one in the future (#49). The React logo file is here. It is being imported and used in both navbars: I think I can add an option to set the logo for the navbars in data.js in the future as well (#50). The same React logo file is being used in the hero component. I can also add an option to set this in data.js (#51). While we are at it, having an easy way to toggle the spin animation with the themes in data.js would be nice too. |
Beta Was this translation helpful? Give feedback.
Thank you! I hope you got this figured out. Right now there are two navbars, but I think they could be combined into one in the future (#49).
The React logo file is here.
It is being imported and used in both navbars:
https://github.com/mshuber1981/github-react-portfolio-template/blob/main/src/components/NavBar.jsx#L29
https://github.com/mshuber1981/github-react-portfolio-template/blob/main/src/components/SecondaryNavBar.jsx#L30
I think I can add an option to set the logo for the navbars in data.js in the future as well (#50).
The same React logo file is being used in the hero component. I can also add an option to set this in data.js (#51).
While we are at it, having an easy way to toggl…