Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/schemas' into schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed Jul 24, 2024
2 parents 2a0f830 + d665b03 commit f390618
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions web/src/components/layout/nav/nav-desktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ export const NavDesktop = () => {
GitHub
</a>
</li>
<li className="text-body mx-2 my-0 nav-item h5 pt-1">
<a className="nav-link" href="/schemas">
<i className="bi bi-file-earmark-check me-1 text-base"></i>Schemas
</a>
</li>
<li className="text-body mx-2 my-0 nav-item h5 pt-1">
<a className="nav-link" href="/validate">
<i className="bi bi-check2-circle me-1 text-base"></i>Validation
Expand Down
3 changes: 2 additions & 1 deletion web/src/components/layout/nav/nav-logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export const NavLogo = () => {
{user ? (
<div>
<a
href={`/${user.login}`}
// href={`/${user.login}`}
href="/"
className="mb-3 align-items-center mb-md-0 me-md-auto text-dark text-decoration-none"
>
<img src="/pephub_logo.svg" alt="PEPhub" height="60" />
Expand Down
4 changes: 4 additions & 0 deletions web/src/components/layout/nav/nav-mobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ export const MobileNav = () => {
<i className="bi bi-github me-2" />
GitHub
</Dropdown.Item>
<Dropdown.Item href="/schemas">
<i className="bi bi-file-earmark-check me-2" />
Schemas
</Dropdown.Item>
<Dropdown.Item href="/validate">
<i className="bi bi-check-circle me-2" />
Validation
Expand Down

0 comments on commit f390618

Please sign in to comment.