diff --git a/src/components/sections/GitHubMark.jsx b/src/components/sections/GitHubMark.jsx new file mode 100644 index 0000000..45b3cc9 --- /dev/null +++ b/src/components/sections/GitHubMark.jsx @@ -0,0 +1,15 @@ +import React from "react"; + +const GitHubMark = ({ width, height }) => { + return ( + + + + ); +}; +export default GitHubMark; diff --git a/src/components/sections/ProjectCard.jsx b/src/components/sections/ProjectCard.jsx index f9dd56b..a2ed13d 100644 --- a/src/components/sections/ProjectCard.jsx +++ b/src/components/sections/ProjectCard.jsx @@ -1,10 +1,21 @@ import React from "react"; +import GitHubMark from "./GitHubMark"; const ProjectCard = ({ title, description }) => { return ( -
-

{title}

-

{description}

+
+
+

{title}

+

{description}

+
+
+ + +
); }; diff --git a/src/components/sections/Projects.jsx b/src/components/sections/Projects.jsx index f25eddb..3cd4bcf 100644 --- a/src/components/sections/Projects.jsx +++ b/src/components/sections/Projects.jsx @@ -9,7 +9,7 @@ const Projects = () => { Projects
- +