diff --git a/src/components/project/detail/ProjectIntroductionSection.tsx b/src/components/project/detail/ProjectIntroductionSection.tsx index 8bc9efb9..3fa1ebfb 100644 --- a/src/components/project/detail/ProjectIntroductionSection.tsx +++ b/src/components/project/detail/ProjectIntroductionSection.tsx @@ -8,7 +8,17 @@ const ProjectIntroduction = ({ projectData }: { projectData: IProjectDetail }) = {projectData.title} {projectData.subtitle} - {projectData.description} + + {projectData.description && + projectData.description.split('\n').map((line, key) => { + return ( + + {line} +
+
+ ); + })} +
); };