Skip to content

Commit

Permalink
Add pitupipy image and update image names
Browse files Browse the repository at this point in the history
  • Loading branch information
Seanspoons committed Nov 25, 2024
1 parent 51a5a17 commit 6c5c2ba
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes
Binary file added public/projects/pitupipy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Project: React.FC<ProjectProps> = ({
</a>
</div>
{imgURL && (
<div className="md:w-1/2 bg-gray-700 w-full max-w-[325px] flex items-center justify-center mt-8 md:mt-0">
<div className="md:w-1/2 w-full max-w-[325px] flex items-center justify-center mt-8 md:mt-0">
<img src={imgURL} alt={title} className="w-full object-cover rounded-md" />
</div>
)}
Expand Down
8 changes: 4 additions & 4 deletions src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ const pastProjectsList: ProjectType[] = [
{
title: "SWE Resume Evaluator SaaS",
description: "SWE Resume Evaluator is a Software-as-a-Service (SaaS) web application that uses Naive Bayes classifiers to assess users' resumes for their suitability for various software engineering positions, such as SWE, ML, and QA.",
imgURL: "projects/swe-logo.png",
imgURL: "projects/swe-resume-evaluator.png",
githubURL: "https://github.com/sfuosdev/swe-resume-evaluator"
},
{
title: "MACM316",
description: "Macm316 provides a visualization and plotting tool for numerical methods in Numerical Analysis.",
imgURL: "projects/preview.png",
imgURL: "projects/macm316.png",
githubURL: "https://github.com/sfuosdev/Macm316"
},
{
title: "PituPiPy",
description: "PituPiPy is a Python implementation of P2P (peer-to-peer) networking program that enables users to message and share files within in a P2P network pool.",
imgURL: "",
imgURL: "projects/pitupipy.jpg",
githubURL: "https://github.com/sfuosdev/PituPiPy"
},
{
title: "SFU-RMP",
description: "Chrome extension for SFU students to provide access to prof rating from RateMyProfessor.com on SFU course registration pages (goSFU, mySchedule)",
imgURL: "projects/sfu_rmp_logo.png",
imgURL: "projects/sfu-rmp.png",
githubURL: "https://github.com/sfuosdev/SFU-RMP",
}
];
Expand Down

0 comments on commit 6c5c2ba

Please sign in to comment.