About Page
The About page is wrapped in a fluid Container
component, which is a full-width container, spanning the entire width of the viewport.
Card Image Overlays
The <Card.ImgOverlay>
component turns an image into a card background and overlays your card’s text:
Add a Team Member In About Page
To add a team member to the About page, open People.js
located in components/TeamMember
, it should be an array of objects that look like this:
Each object contains three properties: name, image, and description. Edit the name and description properties in People.js
.
To add a profile picture of the team member. Copy the image file into the assets/images/teamMember
folder.
Then edit the image property in People.js
, making sure the name of the image file and the image property here match, including the extension name, like: bob.jpg
.
Last updated