@@ -3,12 +3,12 @@ import React from "react";
33import { observer } from "mobx-react" ;
44import Link from "next/link" ;
55import { useParams } from "next/navigation" ;
6- import { Check , Hotel , Users } from "lucide-react" ;
6+ import { Check , Hotel } from "lucide-react" ;
77// plane ui
88import { EUserPermissions , EUserPermissionsLevel , PROJECT_TRACKER_ELEMENTS } from "@plane/constants" ;
99import { useLocalStorage } from "@plane/hooks" ;
1010import { useTranslation } from "@plane/i18n" ;
11- import { ProjectIcon , CloseIcon } from "@plane/propel/icons" ;
11+ import { MembersPropertyIcon , ProjectIcon , CloseIcon } from "@plane/propel/icons" ;
1212import { cn , getFileURL } from "@plane/utils" ;
1313// helpers
1414// hooks
@@ -66,7 +66,7 @@ export const NoProjectsEmptyState = observer(function NoProjectsEmptyState() {
6666 id : "invite-team" ,
6767 title : "home.empty.invite_team.title" ,
6868 description : "home.empty.invite_team.description" ,
69- icon : < Users className = "size-4" /> ,
69+ icon : < MembersPropertyIcon className = "size-4" /> ,
7070 flag : "visited_members" ,
7171 cta : {
7272 text : "home.empty.invite_team.cta" ,
@@ -103,7 +103,7 @@ export const NoProjectsEmptyState = observer(function NoProjectsEmptyState() {
103103 </ Link >
104104 ) : (
105105 < Link href = { `/${ workspaceSlug } /profile/${ currentUser ?. id } ` } >
106- < span className = "relative flex size-4 items-center justify-center rounded-full bg-gray-700 p-4 capitalize text-on-color text-13" >
106+ < span className = "relative flex size-4 items-center justify-center rounded-full bg-[#028375] p-4 capitalize text-on-color text-13" >
107107 { ( currentUser ?. email ?? currentUser ?. display_name ?? "?" ) [ 0 ] }
108108 </ span >
109109 </ Link >
@@ -150,7 +150,7 @@ export const NoProjectsEmptyState = observer(function NoProjectsEmptyState() {
150150 { EMPTY_STATE_DATA . map ( ( item ) => {
151151 const isStateComplete = isComplete ( item . flag ) ;
152152 return (
153- < div key = { item . id } className = "flex flex-col p-4 bg-surface-1 rounded-xl border border-subtle/40 " >
153+ < div key = { item . id } className = "flex flex-col p-4 bg-layer-2 rounded-xl border border-subtle" >
154154 < div
155155 className = { cn ( "grid place-items-center bg-surface-2 rounded-full size-9 mb-3 text-placeholder" , {
156156 "text-accent-primary bg-accent-primary/10" : ! isStateComplete ,
@@ -187,7 +187,7 @@ export const NoProjectsEmptyState = observer(function NoProjectsEmptyState() {
187187 ) : (
188188 < button
189189 type = "button"
190- className = "text-accent-primary hover:text-accent-secondary text-13 font-medium"
190+ className = "text-accent-primary hover:text-accent-secondary text-13 font-medium text-left "
191191 onClick = { item . cta . onClick }
192192 >
193193 { t ( item . cta . text ) }
0 commit comments