diff --git a/src/components/navigationBar/Unsigned.tsx b/src/components/navigationBar/Unsigned.tsx index 27fb047..3b6acdb 100644 --- a/src/components/navigationBar/Unsigned.tsx +++ b/src/components/navigationBar/Unsigned.tsx @@ -1,3 +1,6 @@ +"use client"; + +import * as React from "react"; import { DropdownMenu, DropdownMenuContent, @@ -20,8 +23,17 @@ import { NavigationMenuTrigger, navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu"; +import { cn } from "@/lib/utils"; export function UnsignedNav() { + const components = [ + { + title: "Businesses", + href: "", + description: + "A modal dialog that interrupts the user with important content and expects a response.", + }, + ]; return ( {/* */} @@ -33,27 +45,34 @@ export function UnsignedNav() { - -
    -
  • Businesses
  • + Businesses + +
      + {components.map((component) => ( + + {component.description} + + ))}
    - - Appply +
    - Projects + Projects Lorem Ipsum - Blog + Blog Lorem Ipsum -
  • @@ -144,3 +163,29 @@ const landings = [ route: "/crm-landing", }, ]; +const ListItem = React.forwardRef< + React.ElementRef<"a">, + React.ComponentPropsWithoutRef<"a"> +>(({ className, title, children, ...props }, ref) => { + return ( +
  • + + +
    {title}
    +
    +

    + {children} +

    +
    +
    +
  • + ); +}); +ListItem.displayName = "ListItem";