Welcome to: Molly_Fuhrman_Website $
|
  1. // Molly Fuhrman - Web Developer
  2. export default function Hello() {
  3. return (
  4. <>
  5. <Greeting>
  6. |
  7. <Introduction>
  8. My name is Molly Fuhrman
  9. </Introduction>
  10. <Bio>
  11. I'm a full-stack software engineer.
  12. </Bio>
  13. </Greeting>
  14. <Contact>
  15. email: mollyfuhrman@gmail.com
    If clicked, will copy email to clipboard.
  16. github: github.com/molfuh
    If clicked, will open GitHub in new tab.
  17. linkedin: linkedin.com/in/molly-fuhrman
    If clicked, will open LinkedIn in new tab.
  18. </Contact>
  19. <Appreciation>
  20. Thank you for stopping by!
  21. </Appreciation>
  22. {/* Click below to see recent projects! */}
  23. <ProjectsonClick={openProjects} />
  24. </>
  25. )
  26. }