diff --git a/components/BotCard.tsx b/components/BotCard.tsx index 2ce426c..041ab0d 100644 --- a/components/BotCard.tsx +++ b/components/BotCard.tsx @@ -6,7 +6,7 @@ import Tag from './Tag' import Link from 'next/link' import DiscordAvatar from './DiscordAvatar' -const BotCard = ({ bot }: BotProps): JSX.Element => { +const BotCard = ({ manage=false, bot }: BotProps): JSX.Element => { return (
@@ -56,17 +56,25 @@ const BotCard = ({ bot }: BotProps): JSX.Element => { 보기 - + + 관리하기 + + : + } + className='rounded-br-2xl py-3 w-full text-center text-discord-blurple hover:text-white text-sm font-bold hover:bg-discord-blurple hover:shadow-lg transition duration-100 ease-in' + > 초대하기 - + + }
@@ -77,6 +85,7 @@ const BotCard = ({ bot }: BotProps): JSX.Element => { } interface BotProps { + manage?: boolean bot: Bot }