You can do this any way you'd like. (margin, padding, containers, flexbox, grid, etc.)
Use the 4 colors from for the following
- link color
- link hover
- link visited
- link visited hover
HomeContent is a functional component, with a prop that's already been done for you as an example. It is incuded in the Home component, which now serves as a "container" for other components.
2. Add another functional component on the home page. It should include an image of your choice and a caption. Call this component HomeImage.
You can use placekitten or fillmurray if you don't have an image you'd like to display.
3. Create another functional component for the Home page called HomePitch. It should be located below the HomeImage.
It should include:
- An
<h3>tag that says "So why should you hire me?" - some text about yourself
Note: Home component now contains three functional components as children.
This component should have links the following:
- your email
- your resume
- your linked in
- your github
Note: This will include changing how you link to them in the import statements!