export const basicNav=`"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 (
Home
  • Admin UI
    DashCode Admin Template

    Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.

  • Re-usable components built using Radix UI and Tailwind CSS. How to install dependencies and structure your app. Styles for headings, paragraphs, lists...etc
Components
    {components.map((component) => ( {component.description} ))}
Pages Documentation
) } const ListItem = React.forwardRef< React.ElementRef<"a">, React.ComponentPropsWithoutRef<"a"> >(({ className, title, children, ...props }, ref) => { return (
  • {title}

    {children}

  • ) }) ListItem.displayName = "ListItem" export default BasicNav;`