core/pages/about.tsx

78 lines
3.7 KiB
TypeScript

import { NextPage } from 'next'
import dynamic from 'next/dynamic'
import ColorCard from '@components/ColorCard'
import Divider from '@components/Divider'
import Docs from '@components/Docs'
import Segment from '@components/Segment'
import { ThemeColors } from '@utils/Constants'
const Container = dynamic(() => import('@components/Container'))
const About:NextPage = () => {
return <div className='pb-10'>
<Docs title='소개' header={<h1 className='font-black text-4xl dark:text-koreanbots-blue'> .</h1>} subheader='한국 디스코드봇 리스트에서 자신의 서버에 딱 맞는 봇을 찾아보세요.'>
<Container>
<div className='py-1'>
<h1 className='font-bold text-5xl my-5'></h1>
<p className='text-lg'><span className='text-koreanbots-blue font-bold'> </span> , .</p>
<p className='text-lg'> !</p>
<Divider />
<h1 className='font-bold text-5xl my-5'></h1>
<div className='grid md:grid-cols-3 gap-12 px-4 pb-5'>
<div className='mx-auto font-normal'>
<h2 className='text-3xl mb-1 font-bold text-koreanbots-blue'> </h2>
<p className='text-base'> .</p>
</div>
<div className='mx-auto font-normal'>
<h2 className='text-3xl mb-1 font-bold text-koreanbots-blue'> </h2>
<p className='text-base'> , .</p>
</div>
<div className='mx-auto font-normal'>
<h2 className='text-3xl mb-1 font-bold text-koreanbots-blue'>API </h2>
<p className='text-base'> , , svg .<br /> API를 !</p>
</div>
</div>
<Divider />
<h1 className='font-bold text-5xl my-5'></h1>
<h2 className='font-semibold text-3xl mb-7'></h2>
<Segment>
<h2 className='font-semibold text-xl py-10 text-center'>
<i className='fas fa-quote-left text-xs align-top' />
.
<i className='fas fa-quote-right text-xs align-bottom' />
</h2>
</Segment>
<Divider className='mt-7' />
<h2 className='font-semibold text-3xl my-7'></h2>
<Segment>
<>
, , .
<div className='grid md:grid-cols-2 lg:grid-cols-4'>
<div>
<img src='/logo.png' alt='Logo' />
<div className='text-right text-blue-400'>
<a href='/logo.png' download='koreanbots.png'>.png</a>
</div>
</div>
</div>
<h3 className='font-bold text-xl my-1'></h3>
<p className='font-bold text-md my-1'>영문: Uni Sans Heavy | 한글: Gugi</p>
</>
</Segment>
<Divider className='mt-7' />
<h2 className='font-semibold text-3xl my-5'></h2>
<div className='grid md:grid-cols-2 lg:grid-cols-4 gap-4'>
{
ThemeColors.map(el => (
<ColorCard key={el.color} header={el.name} first={el.rgb} second={el.hex} className={`bg-${el.color} ${el.color.includes('white') ? 'text-black' : 'text-white'}`} />
))
}
</div>
</div>
</Container>
</Docs>
</div>
}
export default About