From e09bd55f8311e2a25d208ae1d33d410cd52a4c61 Mon Sep 17 00:00:00 2001 From: THIS ONE IS A LITTLE BIT TRICKY KRUB Date: Wed, 28 Aug 2024 16:34:24 +0700 Subject: [PATCH] chore: Add user logo to UnsignedNav component --- src/components/icons.tsx | 21 +++++++++++++++++++++ src/components/navigationBar/Unsigned.tsx | 4 +++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 src/components/icons.tsx 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}