Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 91521ad

Browse files
committed
Add home to navbar
1 parent f9affd7 commit 91521ad

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/components/AppNavBar.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ import { useQuery } from 'react-query'
1111
import classNames from 'classnames'
1212

1313
const navbarItems = [
14+
{
15+
title: 'Home',
16+
value: 'home',
17+
href: '/',
18+
},
1419
{
1520
title: 'Members',
1621
value: 'members',

src/styles/globals.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
html,
22
body {
3-
max-width: 100%;
4-
overflow-x: hidden;
3+
@apply max-w-full overflow-x-hidden lg:overflow-x-visible;
54
}
65

76
.bar-of-progress::after {

0 commit comments

Comments
 (0)