({ href, children })
| 18 | } |
| 19 | |
| 20 | function TopLevelNavItem({ href, children }) { |
| 21 | return ( |
| 22 | <li className="md:hidden"> |
| 23 | <Link |
| 24 | href={href} |
| 25 | className="block py-1 text-sm text-zinc-600 transition hover:text-zinc-900 dark:text-zinc-400 dark:hover:text-white" |
| 26 | > |
| 27 | {children} |
| 28 | </Link> |
| 29 | </li> |
| 30 | ) |
| 31 | } |
| 32 | |
| 33 | function NavLink({ |
| 34 | href, |
nothing calls this directly
no outgoing calls
no test coverage detected