diff --git a/components/BotCard.tsx b/components/BotCard.tsx index 56fe14f..dceec19 100644 --- a/components/BotCard.tsx +++ b/components/BotCard.tsx @@ -10,111 +10,103 @@ import DiscordAvatar from '@components/DiscordAvatar' const BotCard = ({ manage = false, bot }: BotProps): JSX.Element => { return ( - - -
-
-
-
-
- +
+
+ + + +

+ {bot.intro} +

+
+ {bot.category.slice(0, 3).map(el => ( + + ))}{' '} + {bot.category.length > 3 && } +
+ + + + +
+
+ + + 보기 + + + {manage ? ( + + + 관리하기 + + + ) : bot.state !== 'ok' ? + 초대하기 + : + + 초대하기 + + }
- - +
+
) }