diff --git a/src/components/pages/Front.page.jsx b/src/components/pages/Front.page.jsx index ef50234..8327220 100644 --- a/src/components/pages/Front.page.jsx +++ b/src/components/pages/Front.page.jsx @@ -13,6 +13,7 @@ import Cdiv from "../core/Cdiv"; import FadeComponent from "../core/FadeComponent"; import Introduction from "../sections/Introduction"; import Experience from "../sections/Experience"; +import Projects from '../sections/Projects'; //============================================================ // Component @@ -73,9 +74,8 @@ const FrontPage = () => { - - + diff --git a/src/components/sections/ProjectCard.jsx b/src/components/sections/ProjectCard.jsx new file mode 100644 index 0000000..f9dd56b --- /dev/null +++ b/src/components/sections/ProjectCard.jsx @@ -0,0 +1,11 @@ +import React from "react"; + +const ProjectCard = ({ title, description }) => { + return ( +
+

{title}

+

{description}

+
+ ); +}; +export default ProjectCard; diff --git a/src/components/sections/Projects.jsx b/src/components/sections/Projects.jsx new file mode 100644 index 0000000..f25eddb --- /dev/null +++ b/src/components/sections/Projects.jsx @@ -0,0 +1,22 @@ +import React from "react"; +import ProjectCard from './ProjectCard'; + +const Projects = () => { + return ( +
+
+

+ Projects +

+
+ + + + + +
+
+
+ ); +}; +export default Projects;