"use client" import * as React from "react" import Link from "next/link" import { cn } from "@/lib/utils" import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu" const components: { title: string; href: string; description: string }[] = [ { title: "Alert Dialog", href: "#", description: "A modal dialog that interrupts the user with important content and expects a response.", }, { title: "Hover Card", href: "#", description: "For sighted users to preview content available behind a link.", }, { title: "Progress", href: "#", description: "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.", }, { title: "Scroll-area", href: "#", description: "Visually or semantically separates content.", }, { title: "Tabs", href: "#", description: "A set of layered sections of content—known as tab panels—that are displayed one at a time.", }, { title: "Tooltip", href: "#", description: "A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.", }, ] const BasicNav = () => { return (
Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.
{children}