diff --git a/web/app/(commonLayout)/apps/AppCard.tsx b/web/app/(commonLayout)/apps/AppCard.tsx index 1d5415508b..a8722614c6 100644 --- a/web/app/(commonLayout)/apps/AppCard.tsx +++ b/web/app/(commonLayout)/apps/AppCard.tsx @@ -5,8 +5,6 @@ import { useRouter } from 'next/navigation' import { useCallback, useState } from 'react' import { useTranslation } from 'react-i18next' import cn from 'classnames' -import style from '../list.module.css' -import AppModeLabel from './AppModeLabel' import s from './style.module.css' import SettingsModal from '@/app/components/app/overview/settings' import type { ConfigParams } from '@/app/components/app/overview/settings' @@ -25,6 +23,8 @@ import { asyncRunSafe } from '@/utils' import { getRedirection } from '@/utils/app-redirection' import { useProviderContext } from '@/context/provider-context' import { NEED_REFRESH_APP_LIST_KEY } from '@/config' +import { AiText, ChatBot, CuteRobote } from '@/app/components/base/icons/src/vender/solid/communication' +import { Route } from '@/app/components/base/icons/src/vender/line/mapsAndTravel' export type AppCardProps = { app: App @@ -209,16 +209,54 @@ const AppCard = ({ app, onRefresh }: AppCardProps) => { e.preventDefault() getRedirection(isCurrentWorkspaceManager, app, push) }} - className={style.listItem} + className='group flex col-span-1 bg-white border-2 border-solid border-transparent rounded-lg shadow-sm min-h-[160px] flex flex-col transition-all duration-200 ease-in-out cursor-pointer hover:shadow-lg' > -