Skip to content

Commit

Permalink
Update navigation and profiles components
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricdcc committed May 30, 2024
1 parent bc2558d commit 3edd006
Show file tree
Hide file tree
Showing 4 changed files with 8,522 additions and 8,522 deletions.
4 changes: 2 additions & 2 deletions src/components/crates.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ export const Crates = (props) => {
<div className="col-md-8">
<p>{d.text}</p>
</div>
<div className="col-md-1" onClick={() => githubClick(d)}>
<div className="col-md-1" onClick={() => githubClick(d)} title={d.url}>
<i className="fa fa-github"></i>
</div>
{
d.crateurl ?
<div className="col-md-1" onClick={() => crateClick(d)}>
<div className="col-md-1" onClick={() => crateClick(d)} title={d.url}>
<i className="fa fa-archive"></i>
</div>
:
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const Navigation = (props) => {
}
<li>
<a href={currentRoutePath+prepend+"#team"} className="page-scroll">
Team
Contact
</a>
</li>

Expand Down
2 changes: 1 addition & 1 deletion src/components/profiles.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Profiles = (props) => {
<div id="profiles" className="text-center">
<div className="container" >
<div className="col-md-10 col-md-offset-1 section-title">
<h2>Profiles</h2>
<h2>RO-Profiles</h2>
</div>
<div className="row">
{props.data
Expand Down
Loading

0 comments on commit 3edd006

Please sign in to comment.