diff --git a/app/components/homepage/projects/project-card.jsx b/app/components/homepage/projects/project-card.jsx index 8cb2600..a9365a6 100644 --- a/app/components/homepage/projects/project-card.jsx +++ b/app/components/homepage/projects/project-card.jsx @@ -1,8 +1,9 @@ import * as React from 'react'; +import Image from "next/image"; function ProjectCard({ project }) { return ( -
+
@@ -40,7 +41,8 @@ function ProjectCard({ project }) { {project.link} ' - + Visit project link , @@ -76,16 +78,27 @@ function ProjectCard({ project }) { ,
- description: - {' ' + project.description} - + description: + {' ' + project.description} + +
+
+ {`};`} +
+
-
{`};`}
- -
-
+ + {/*
*/} + {/* */} + {/*
*/} ); -}; +} export default ProjectCard; \ No newline at end of file diff --git a/utils/data/projects-data.js b/utils/data/projects-data.js index 8abad62..5b604f7 100644 --- a/utils/data/projects-data.js +++ b/utils/data/projects-data.js @@ -8,7 +8,7 @@ export const projectsData = [ role: 'Programmer', code: '', demo: '', - image: '', + image: "/png/placeholder.png", link: 'https://github.com/FTC-23511/Offseason-2024', }, { @@ -20,7 +20,7 @@ export const projectsData = [ code: '', role: 'Co-creator & Programmer', demo: '', - image: '', + image: "/png/placeholder.png", link: 'https://www.seattlesolvers.com/', }, { @@ -32,7 +32,7 @@ export const projectsData = [ role: 'Creator & Programmer', code: '', demo: '', - image: '', + image: "/png/placeholder.png", link: 'https://docs.seattlesolvers.com/', }, { @@ -44,7 +44,7 @@ export const projectsData = [ role: 'Creator & Programmer', code: '', demo: '', - image: '', + image: "/png/placeholder.png", link: "https://ftc-23511.github.io/TrajectoryBuilder/", } ];