Resolved merge conflicts

This commit is contained in:
YashKandalkar
2020-10-03 00:59:18 +05:30
10 changed files with 114 additions and 10 deletions
+29 -1
View File
@@ -96,6 +96,20 @@ const Markdown = props => {
}
return ""
}
const GithubProfileTrophy = props => {
let link =
"https://github-profile-trophy.vercel.app/?username=" + props.github
if (props.show) {
return (
<>
{`<p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="${link}" alt="${props.github}" /></a> </p>`}
<br />
<br />
</>
)
}
return ""
}
const GitHubStats = props => {
let link =
"https://github-readme-stats.vercel.app/api?username=" +
@@ -220,6 +234,12 @@ const Markdown = props => {
}}
/>
</>
<>
<GithubProfileTrophy
show={props.data.githubProfileTrophy}
github={props.social.github}
/>
</>
<>
<DisplayWork
prefix={props.prefix.currentWork}
@@ -433,7 +453,15 @@ const Markdown = props => {
username={props.social.rssurl}
/>
</>
{isSocial(props.social) ? <>{`</p>`}<br/><br/></> : ""}
{isSocial(props.social) ? (
<>
{`</p>`}
<br />
<br />
</>
) : (
""
)}
<>
<DisplaySkills skills={props.skills} />
</>