feat: add multipass to navbar

This commit is contained in:
jinhojang6 2024-11-06 23:06:53 +09:00
parent f17cf6df63
commit b8088f36b7
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8

View File

@ -25,8 +25,6 @@ export const navItems: NavItem[] = [
{
label: 'Dashboard',
href: '/dashboard',
// isDisabled: true,
// isSoon: true,
},
// {
// label: 'Leaderboard',
@ -40,10 +38,12 @@ export const navItems: NavItem[] = [
label: 'Docs',
href: '/docs',
},
// {
// label: 'Multipass',
// href: '/multipass',
// },
{
label: 'Multipass',
href: '/multipass',
isDisabled: true,
isSoon: true,
},
]
const Navbar: React.FC<NavbarProps> = () => {