mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 22:10:24 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import { NextPage } from 'next'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
import { get } from '@utils/Query'
|
|
import { Bot, List } from '@types'
|
|
|
|
const Hero = dynamic(() => import('@components/Hero'))
|
|
const Advertisement = dynamic(() => import('@components/Advertisement'))
|
|
const BotCard = dynamic(() => import('@components/BotCard'))
|
|
const Container = dynamic(() => import('@components/Container'))
|
|
const ResponsiveGrid = dynamic(() => import('@components/ResponsiveGrid'))
|
|
|
|
const New: NextPage<NewProps> = ({ data }) => {
|
|
return (
|
|
<>
|
|
<Hero
|
|
type='bots'
|
|
header='새로운 봇'
|
|
description='최근에 한국 디스코드 리스트에 추가된 봇들입니다!'
|
|
/>
|
|
<Container className='pb-10'>
|
|
<Advertisement />
|
|
<ResponsiveGrid>
|
|
{data.data.map((bot) => (
|
|
<BotCard key={bot.id} bot={bot} />
|
|
))}
|
|
</ResponsiveGrid>
|
|
<Advertisement />
|
|
</Container>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const getServerSideProps = async () => {
|
|
const data = await get.list.new.load(1)
|
|
return {
|
|
props: {
|
|
data,
|
|
},
|
|
}
|
|
}
|
|
|
|
interface NewProps {
|
|
data: List<Bot>
|
|
}
|
|
|
|
export default New
|