Skip to content

Commit

Permalink
Integrate resources to the project detail page #64
Browse files Browse the repository at this point in the history
  • Loading branch information
brodavi committed Oct 26, 2021
1 parent c768661 commit 8a168ee
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pages/projects/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,16 @@ function Project({
<li key={k}>
<b>{resource.name}</b>
<p>{resource.description}</p>
<a href={resource.file}>{resource.file}</a>
<a href={resource.link}>{resource.link}</a>
<div>
<Link marginLeft="1em" color="#2995F8" href={resource.file}>
{resource.file}
</Link>
</div>
<div>
<Link marginLeft="1em" color="#2995F8" href={resource.link}>
{resource.link}
</Link>
</div>
</li>
))}
</ul>
Expand Down

0 comments on commit 8a168ee

Please sign in to comment.