core/pages/about.tsx
SKINMAKER b421d1ab64
chore: apply prettier (#637)
* chore: apply prettier

* chore: edit ready comment

* chore: move ts comment
2023-11-29 22:04:33 +09:00

111 lines
4.1 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='text-4xl font-black dark:text-koreanbots-blue'>
.
</h1>
}
subheader='한국 디스코드 리스트에서 자신에게 필요한 디스코드의 모든 것을 찾아보세요!'
>
<Container>
<div className='py-1'>
<h1 className='my-5 text-5xl font-bold'></h1>
<p className='text-lg'>
<span className='font-bold text-koreanbots-blue'> </span>
,
.
</p>
<p className='text-lg'> !</p>
<Divider />
<h1 className='my-5 text-5xl font-bold'></h1>
<div className='grid gap-12 px-4 pb-5 md:grid-cols-3'>
<div className='mx-auto font-normal'>
<h2 className='mb-1 text-3xl font-bold text-koreanbots-blue'> </h2>
<p className='text-base'>
.
</p>
</div>
<div className='mx-auto font-normal'>
<h2 className='mb-1 text-3xl font-bold text-koreanbots-blue'> </h2>
<p className='text-base'>
, .
</p>
</div>
<div className='mx-auto font-normal'>
<h2 className='mb-1 text-3xl font-bold text-koreanbots-blue'>API </h2>
<p className='text-base'>
, , .
<br />
API를 !
</p>
</div>
</div>
<Divider />
<h1 className='my-5 text-5xl font-bold'></h1>
<h2 className='mb-7 text-3xl font-semibold'></h2>
<Segment>
<h2 className='py-10 text-center text-xl font-semibold'>
<i className='fas fa-quote-left align-top text-xs' />
.
<i className='fas fa-quote-right align-bottom text-xs' />
</h2>
</Segment>
<Divider className='mt-7' />
<h2 className='my-7 text-3xl font-semibold'></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='my-1 text-xl font-bold'></h3>
<p className='text-md my-1 font-bold'>영문: Uni Sans Heavy | 한글: Gugi</p>
</>
</Segment>
<Divider className='mt-7' />
<h2 className='my-5 text-3xl font-semibold'></h2>
<div className='grid gap-4 md:grid-cols-2 lg:grid-cols-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