feat: disable unfinished buttons
This commit is contained in:
parent
9191eb3df0
commit
a6bad556a4
2 changed files with 6 additions and 5 deletions
|
@ -81,8 +81,8 @@ export function AppSidebar() {
|
||||||
<Collapsible defaultOpen className='group/collapsible'>
|
<Collapsible defaultOpen className='group/collapsible'>
|
||||||
<SidebarGroup>
|
<SidebarGroup>
|
||||||
<SidebarGroupLabel asChild>
|
<SidebarGroupLabel asChild>
|
||||||
<CollapsibleTrigger>
|
<CollapsibleTrigger disabled>
|
||||||
<span className='flex items-center gap-2 text-xl font-label text-neutral-100'>
|
<span className='flex items-center gap-2 text-xl font-label text-disabled'>
|
||||||
<Star className='size-8' />{' '}
|
<Star className='size-8' />{' '}
|
||||||
<span className='group-data-[collapsible=icon]:hidden'>
|
<span className='group-data-[collapsible=icon]:hidden'>
|
||||||
Favorites
|
Favorites
|
||||||
|
|
|
@ -7,12 +7,12 @@ import UserDropdown from '@/components/misc/user-dropdown';
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{
|
{
|
||||||
title: 'Calendar',
|
title: 'Inbox',
|
||||||
url: '#',
|
url: '#',
|
||||||
icon: Inbox,
|
icon: Inbox,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Friends',
|
title: 'Notifications',
|
||||||
url: '#',
|
url: '#',
|
||||||
icon: BellRing,
|
icon: BellRing,
|
||||||
},
|
},
|
||||||
|
@ -34,8 +34,9 @@ export default function Header({
|
||||||
<ThemePicker />
|
<ThemePicker />
|
||||||
{items.map((item) => (
|
{items.map((item) => (
|
||||||
<NotificationButton
|
<NotificationButton
|
||||||
|
disabled
|
||||||
key={item.title}
|
key={item.title}
|
||||||
variant='outline_primary'
|
variant='outline_muted'
|
||||||
dotVariant='hidden'
|
dotVariant='hidden'
|
||||||
size='icon'
|
size='icon'
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue