app-ui / navigation / sidebar-navigation
With Secondary Navigation
04-with-secondary-navigation.jsx
import { Disclosure, DisclosureButton, DisclosurePanel } from '@headlessui/react'
import { ChevronRightIcon } from '@heroicons/react/20/solid'
import {
CalendarIcon,
ChartPieIcon,
DocumentDuplicateIcon,
FolderIcon,
HomeIcon,
UsersIcon,
} from '@heroicons/react/24/outline'
const navigation = [
{ name: 'Dashboard', href: '#', icon: HomeIcon, current: true },
{
name: 'Teams',
icon: UsersIcon,
current: false,
children: [
{ name: 'Engineering', href: '#' },
{ name: 'Human Resources', href: '#' },
{ name: 'Customer Success', href: '#' },
],
},
{
name: 'Projects',
icon: FolderIcon,
current: false,
children: [
{ name: 'GraphQL API', href: '#' },
{ name: 'iOS App', href: '#' },
{ name: 'Android App', href: '#' },
{ name: 'New Customer Portal', href: '#' },
],
},
{ name: 'Calendar', href: '#', icon: CalendarIcon, current: false },
{ name: 'Documents', href: '#', icon: DocumentDuplicateIcon, current: false },
{ name: 'Reports', href: '#', icon: ChartPieIcon, current: false },
]
function classNames(...classes) {
return classes.filter(Boolean).join(' ')
}
export default function Example() {
return (
<div className="relative flex grow flex-col gap-y-5 overflow-y-auto border-r border-gray-200 bg-white px-6 dark:border-white/10 dark:bg-gray-900 dark:before:pointer-events-none dark:before:absolute dark:before:inset-0 dark:before:bg-black/10">
<div className="relative flex h-16 shrink-0 items-center">
<img
alt="Your Company"
src="https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=600"
className="h-8 w-auto dark:hidden"
/>
<img
alt="Your Company"
src="https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
className="h-8 w-auto not-dark:hidden"
/>
</div>
<nav className="relative flex flex-1 flex-col">
<ul role="list" className="flex flex-1 flex-col gap-y-7">
<li>
<ul role="list" className="-mx-2 space-y-1">
{navigation.map((item) => (
<li key={item.name}>
{!item.children ? (
<a
href={item.href}
className={classNames(
item.current
? 'bg-gray-50 dark:bg-white/5 dark:text-white'
: 'hover:bg-gray-50 dark:hover:bg-white/5 dark:hover:text-white',
'group flex gap-x-3 rounded-md p-2 text-sm/6 font-semibold text-gray-700 dark:text-gray-400',
)}
>
<item.icon aria-hidden="true" className="size-6 shrink-0 text-gray-400 dark:text-current" />
{item.name}
</a>
) : (
<Disclosure as="div">
<DisclosureButton
className={classNames(
item.current
? 'bg-gray-50 dark:bg-white/5 dark:text-white'
: 'hover:bg-gray-50 dark:hover:bg-white/5 dark:hover:text-white',
'group flex w-full items-center gap-x-3 rounded-md p-2 text-left text-sm/6 font-semibold text-gray-700 dark:text-gray-400',
)}
>
<item.icon aria-hidden="true" className="size-6 shrink-0 text-gray-400 dark:text-current" />
{item.name}
<ChevronRightIcon
aria-hidden="true"
className="ml-auto size-5 shrink-0 text-gray-400 group-data-open:rotate-90 group-data-open:text-gray-500 dark:group-data-open:text-gray-400"
/>
</DisclosureButton>
<DisclosurePanel as="ul" className="mt-1 px-2">
{item.children.map((subItem) => (
<li key={subItem.name}>
{/* 44px */}
<DisclosureButton
as="a"
href={subItem.href}
className={classNames(
subItem.current
? 'bg-gray-50 dark:bg-white/5 dark:text-white'
: 'hover:bg-gray-50 dark:hover:bg-white/5 dark:hover:text-white',
'block rounded-md py-2 pr-2 pl-9 text-sm/6 text-gray-700 dark:text-gray-400',
)}
>
{subItem.name}
</DisclosureButton>
</li>
))}
</DisclosurePanel>
</Disclosure>
)}
</li>
))}
</ul>
</li>
<li className="-mx-6 mt-auto">
<a
href="#"
className="flex items-center gap-x-4 px-6 py-3 text-sm/6 font-semibold text-gray-900 hover:bg-gray-50 dark:text-white dark:hover:bg-white/5"
>
<img
alt=""
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
className="size-8 rounded-full bg-gray-50 outline -outline-offset-1 outline-black/5 dark:bg-gray-800 dark:outline-white/10"
/>
<span className="sr-only">Your profile</span>
<span aria-hidden="true">Tom Cook</span>
</a>
</li>
</ul>
</nav>
</div>
)
}