diff --git a/src/components/navigationBar/profileBar.tsx b/src/components/navigationBar/profileBar.tsx index d464a0d..c04e2db 100644 --- a/src/components/navigationBar/profileBar.tsx +++ b/src/components/navigationBar/profileBar.tsx @@ -37,8 +37,11 @@ const AuthenticatedComponents = ({ uid }: { uid: string }) => { const displayValue = notifications >= 100 ? "..." : notifications; const { data } = useUserRole(); + const businessClass = + data?.role === "business" ? "border-2 border-[#FFD700] bg-[#FFF8DC] dark:bg-[#4B3E2B] rounded-md p-1" : ""; + return ( -
+