Navigation Menu
A collection of links for navigating websites.
Import
import { NavigationMenu } from '@chimera-ui/components'
Usage
import * as React from "react";
import Link from "next/link";
import { NavigationMenu, cn, Showcase } from "@chimera-ui/components";
const components: { title: string; href: string; description: string }[] = [
{
title: "Alert Dialog",
href: "/docs/components/AlertDialog ",
description:
"A modal dialog that interrupts the user with important content and expects a response.",
},
{
title: "Hover Card",
href: "/docs/primitives/hover-card",
description:
"For sighted users to preview content available behind a link.",
},
{
title: "Progress",
href: "/docs/components/Progress",
description:
"Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.",
},
{
title: "Scroll-area",
href: "/docs/primitives/scroll-area",
description: "Visually or semantically separates content.",
},
{
title: "Tabs",
href: "/docs/components/Tabs",
description:
"A set of layered sections of content—known as tab panels—that are displayed one at a time.",
},
{
title: "Tooltip",
href: "/docs/components/Tooltip",
description:
"A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.",
},
];
export const NavigationMenuDemo = () => {
return (
<div className="w-full">
<NavigationMenu.Root>
<NavigationMenu.List>
<NavigationMenu.Item>
<NavigationMenu.Trigger className="whitespace-nowrap">
Getting started
</NavigationMenu.Trigger>
<NavigationMenu.Content>
<ul className="grid gap-3 p-6 md:w-[400px] lg:w-[500px] lg:grid-cols-[.75fr_1fr]">
<li className="row-span-3">
<NavigationMenu.Link asChild>
<a
className="flex h-full w-full select-none flex-col justify-end rounded-md bg-gradient-to-b from-rose-500 to-indigo-700 p-6 no-underline outline-none focus:shadow-md"
href="/"
>
<div className="mt-4 mb-2 text-lg font-medium text-white">
Chimera UI
</div>
<p className="text-sm leading-tight text-white/90">
Beautifully designed components built with Radix UI and
Tailwind CSS.
</p>
</a>
</NavigationMenu.Link>
</li>
<ListItem href="/docs/introduction" title="Introduction">
Re-usable components built using Radix UI and Tailwind CSS.
</ListItem>
<ListItem href="/docs/install " title="Installation">
How to install dependencies and structure your app.
</ListItem>
<ListItem href="/docs/primitives/typography" title="Typography">
Styles for headings, paragraphs, lists...etc
</ListItem>
</ul>
</NavigationMenu.Content>
</NavigationMenu.Item>
<NavigationMenu.Item>
<NavigationMenu.Trigger>Components</NavigationMenu.Trigger>
<NavigationMenu.Content>
<ul className="grid w-[400px] gap-3 p-4 md:w-[500px] md:grid-cols-2 lg:w-[600px] justify-center">
{components.map((component) => (
<ListItem
key={component.title}
title={component.title}
href={component.href}
>
{component.description}
</ListItem>
))}
</ul>
</NavigationMenu.Content>
</NavigationMenu.Item>
<NavigationMenu.Item className="hidden md:block">
<Link href="/docs/introduction" legacyBehavior passHref>
<NavigationMenu.Link>Documentation</NavigationMenu.Link>
</Link>
</NavigationMenu.Item>
</NavigationMenu.List>
<NavigationMenu.Viewport />
</NavigationMenu.Root>
</div>
);
};
const ListItem = React.forwardRef<
React.ElementRef<"a">,
React.ComponentPropsWithoutRef<"a">
>(({ className, title, children, ...props }, ref) => {
return (
<li>
<NavigationMenu.Link asChild>
<a
ref={ref}
className={cn(
"block select-none space-y-1 rounded-md p-3 leading-none no-underline outline-none transition-colors hover:bg-overlay-focus focus:bg-overlay-focus",
className
)}
{...props}
>
<div className="text-sm font-medium leading-none">{title}</div>
<p className="text-sm leading-snug text-overlay-content-2 line-clamp-2 ">
{children}
</p>
</a>
</NavigationMenu.Link>
</li>
);
});
ListItem.displayName = "ListItem";