diff --git a/source/markdown/portfolio/0.md b/source/markdown/portfolio/0.md index a0863ed..b17bafb 100644 --- a/source/markdown/portfolio/0.md +++ b/source/markdown/portfolio/0.md @@ -3,3 +3,7 @@ github: https://github.com/developomp --- ## Education + +## Skills + +programming skills diff --git a/source/src/pages/Portfolio/index.tsx b/source/src/pages/Portfolio/index.tsx index 517d13a..8f68d56 100644 --- a/source/src/pages/Portfolio/index.tsx +++ b/source/src/pages/Portfolio/index.tsx @@ -1,6 +1,5 @@ import { useEffect, useState } from "react" import { Helmet } from "react-helmet-async" -import styled from "styled-components" import MainContent from "../../components/MainContent" import ProjectCard from "./ProjectCard" @@ -10,15 +9,9 @@ import portfolio from "../../data/portfolio.json" import { PortfolioProject } from "../../../types/types" -const SkillsImage = styled.img` - display: block; - margin-left: auto; - margin-right: auto; - max-width: 100%; -` - const Portfolio = () => { const [projects, setProjects] = useState([]) + // eslint-disable-next-line @typescript-eslint/no-unused-vars const [skills, setSkills] = useState([]) useEffect(() => { @@ -67,16 +60,12 @@ const Portfolio = () => {

Portfolio

-
-
-

- - # - {" "} - Skills -

- +
+ + {/* rendered markdown */} + +
{/* Projects */} @@ -87,10 +76,13 @@ const Portfolio = () => { Projects - {skills} + {/* + // todo: filter projects by skill + {skills} -
-
+
+
+ */} {projects}