feat: added security page

This commit is contained in:
wonderlandpark 2021-05-07 11:06:07 +09:00
parent 28062b493c
commit 728acfc533
2 changed files with 50 additions and 2 deletions

View File

@ -40,6 +40,11 @@ const Footer = ({ theme, setTheme }: FooterProps): JSX.Element => {
<a className='hover:text-gray-300'></a>
</Link>
</li>
<li>
<Link href='/security'>
<a className='hover:text-gray-300'> </a>
</Link>
</li>
</ul>
</div>
<div className='col-span-2 mb-2'>
@ -65,11 +70,11 @@ const Footer = ({ theme, setTheme }: FooterProps): JSX.Element => {
<div className='col-span-1 mb-2'>
<h2 className='text-koreanbots-blue text-base font-bold'></h2>
<ul className='text-sm'>
<li>
{/* <li>
<Link href='/partners'>
<a className='hover:text-gray-300'></a>
</Link>
</li>
</li> */}
<li>
<Link href='/verification'>
<a className='hover:text-gray-300'></a>

43
pages/security.tsx Normal file
View File

@ -0,0 +1,43 @@
import { NextPage } from 'next'
import dynamic from 'next/dynamic'
const Docs = dynamic(() => import('@components/Docs'))
const Button = dynamic(() => import('@components/Button'))
const Security: NextPage = () => {
return <Docs
header='버그 바운티 프로그램'
description='한국 디스코드봇 리스트는 보안을 최우선으로 생각합니다.'
>
<h1 className='mb-3 text-3xl font-bold text-koreanbots-blue'></h1>
<p> . .</p>
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'></h1>
<ul className='list-disc'>
<li> . .</li>
<li> . ) , DDoS, DoS </li>
<li> .</li>
<li> 3 / .</li>
<li> .</li>
</ul>
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'></h1>
<ul className='list-disc'>
{
['koreanbots.dev 및 *.koreanbots.dev', 'kbots.link', '디스코드.한국'].map(el => <li key={el}>{el}</li>)
}
</ul>
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'> </h1>
<ul className='list-disc'>
<li> </li>
<li>Brute force </li>
<li>Clickjacking</li>
<li>DoS </li>
<li> (Self XSS )</li>
</ul>
<div className='text-center'>
<h1 className='text-3xl font-bold mt-40 mb-10'> ?</h1>
<Button href='mailto:koreanbots.dev@gmail.com'></Button>
</div>
</Docs>
}
export default Security