Skip to content

Commit

Permalink
Update image paths in ProjectCard component
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-phxm committed Jan 17, 2024
1 parent 9f9f492 commit b63e0b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/_projects/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default function ProjectCard({
index: number;
}) {
if (!repo.description) repo.description = `View ${repo.name} on Github`;
const reactImage = "../../public/React_Hero.png";
const pythonImage = "../../public/python.jpg";
const cImage = "../../public/C.png";
const javaImage = "../../public/java.png";
const fallBack = "../../public/fallback.jpg";
const reactImage = "/React_Hero.png";
const pythonImage = "/python.jpg";
const cImage = "/C.png";
const javaImage = "/java.png";
const fallBack = "/fallback.jpg";
return (
<>
<li key={repo.id} className="w-80">
Expand Down

0 comments on commit b63e0b7

Please sign in to comment.