Skip to content

Commit

Permalink
fixed about me page bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinTrinh1227 committed Jun 18, 2024
1 parent 277f1ac commit 25e47a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/About.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import aboutMeJson from "../content.json";
import { Fade } from "react-awesome-reveal";
import ReactMarkdown from "react-markdown";

/* ==========================================
* JSON Template Example
Expand Down Expand Up @@ -60,7 +61,9 @@ const AboutMe = () => {
<h3 className="title-a" id="aboutme">
{aboutMe.section.title} <div className="line-mf"></div>
</h3>
<p className="subtitle-a">{aboutMe.section.description}</p>
<p className="subtitle-a">
<ReactMarkdown>{aboutMe.section.description}</ReactMarkdown>
</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 25e47a2

Please sign in to comment.