-
Notifications
You must be signed in to change notification settings - Fork 67
Updating the Projects section
mshuber1981 edited this page Jun 22, 2024
·
2 revisions
-
Follow the instructions to update the filteredProjects array (src/config.js line 99)
/* Projects ************************************************************** List the repo names (string - "your-repo-name") you want to include (they will be sorted alphabetically). If empty, only the first 3 will be included. */ export const filteredProjects = ["example-1", "example-2", "example-3"];
-
Import the projects images you want to use (src/config.js line 12) or the default image will be applied
// Projects Images (add your images to the src/images directory and import below) import Logo from "./images/logo.svg";
-
Follow the instructions to update the projectCardImages array (src/config.js line 102)
// Replace the defualt GitHub image for matching repos below (images imported above - line 8) export const projectCardImages = [ { name: "example-1", image: Logo, }, ];
If you include a Website URL in your repository details, then a Live Demo link will be surfaced on the corresponding project card.