diff --git a/src/app/cv/Cv.tsx b/src/app/cv/Cv.tsx index 2161248..4e03ff7 100644 --- a/src/app/cv/Cv.tsx +++ b/src/app/cv/Cv.tsx @@ -10,6 +10,8 @@ import { Component } from "@typings/component"; import humanizeDuration from "humanize-duration"; import NextImage from "next/image"; +import { Fragment } from "react"; + import CvProps, { Education as EducationProps, Skill as SkillProps @@ -112,6 +114,7 @@ export const Cv: Component<{ data: CvProps }> = ({ data }) => { {data.programmingLanguages.map((skill) => ( ))} + @@ -120,13 +123,10 @@ export const Cv: Component<{ data: CvProps }> = ({ data }) => { {data.education.map((education) => { return ( - <> + - - + + ); })}