diff --git a/src/components/icons.tsx b/src/components/icons.tsx new file mode 100644 index 0000000..af6dc5d --- /dev/null +++ b/src/components/icons.tsx @@ -0,0 +1,21 @@ +type IconProps = React.HTMLAttributes; + +export const Icons = { + userLogo: (props: IconProps) => ( + + + + + ), +}; diff --git a/src/components/navigationBar/Unsigned.tsx b/src/components/navigationBar/Unsigned.tsx index 3b6acdb..f5bdfa0 100644 --- a/src/components/navigationBar/Unsigned.tsx +++ b/src/components/navigationBar/Unsigned.tsx @@ -24,6 +24,7 @@ import { navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu"; import { cn } from "@/lib/utils"; +import { Icons } from "@/components/icons" export function UnsignedNav() { const components = [ @@ -31,7 +32,7 @@ export function UnsignedNav() { title: "Businesses", href: "", description: - "A modal dialog that interrupts the user with important content and expects a response.", + "Apply", }, ]; return ( @@ -181,6 +182,7 @@ const ListItem = React.forwardRef<
{title}

+ {children}