원더 2021-01-10 12:53:59 +09:00
parent 6e7ea2278a
commit ddf7f09df6
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ const Index: NextPage<IndexProps> = ({ votes, newBots, trusted }) => {
<i className="far fa-heart mr-3 text-pink-600" />
</h1>
<p className="text-base"> !</p>
<div className='grid gap-4 lg:grid-cols-4 mt-10'>
<div className='grid gap-4 2xl:grid-cols-4 md:grid-cols-2 mt-10'>
{
votes.data.slice(0, 8).map(bot=> <BotCard key={bot.id} bot={bot} />)
}
@ -40,7 +40,7 @@ const Index: NextPage<IndexProps> = ({ votes, newBots, trusted }) => {
<i className="far fa-star mr-3 text-yellow-500" />
</h1>
<p className="text-base"> .</p>
<div className='grid gap-4 lg:grid-cols-4 mt-10'>
<div className='grid gap-4 2xl:grid-cols-4 md:grid-cols-2 mt-10'>
{
newBots.data.slice(0, 4).map(bot=> <BotCard key={bot.id} bot={bot} />)
}
@ -49,7 +49,7 @@ const Index: NextPage<IndexProps> = ({ votes, newBots, trusted }) => {
<i className="fa fa-check mr-3 mt-10 text-green-500" />
</h1>
<p className="text-base">KOREANBOTS에서 !!</p>
<div className='grid gap-4 lg:grid-cols-4 mt-10'>
<div className='grid gap-4 2xl:grid-cols-4 md:grid-cols-2 mt-10'>
{
trusted.data.slice(0, 4).map(bot=> <BotCard key={bot.id} bot={bot} />)
}

View File

@ -77,7 +77,7 @@ const Users: NextPage<UserProps> = ({ data }) => {
</div>
<Divider />
<h2 className="mt-8 text-3xl font-bold"> </h2>
<div className="grid gap-4 mt-20 lg:grid-cols-4">
<div className="grid gap-4 mt-20 2xl:grid-cols-4 md:grid-cols-2">
{(data.bots as Bot[]).map((bot: Bot) => (
<BotCard key={bot.id} bot={bot} />
))}