Skip to content

Commit

Permalink
Add github button in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Sep 30, 2024
1 parent 3513f3e commit dc62f65
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Link from 'next/link';
import { useRouter } from 'next/router';
import { FunctionComponent, useState } from 'react';
import { useAuth } from '../utils/auth';
import GitHub from './github';

enum Dropdowns {
NONE = 'NONE',
Expand Down Expand Up @@ -380,6 +381,10 @@ const Nav: FunctionComponent = function () {
</Link>
</li>

<li className='nav-item'>
<GitHub />
</li>

<li
className='nav-item dropdown text-center'
onMouseEnter={() => {
Expand Down

0 comments on commit dc62f65

Please sign in to comment.