import { GetStaticProps, NextPage } from 'next' import dynamic from 'next/dynamic' import { SpecialEndPoints } from '@utils/Constants' const Button = dynamic(() => import('@components/Button')) const Divider = dynamic(() => import('@components/Divider')) const Docs = dynamic(() => import('@components/Docs')) const Markdown = dynamic(() => import('@components/Markdown')) const Verification: NextPage = ({ content }) => { return (

지금 바로 신청하세요

) } interface VerificationProps { content: string } export const getStaticProps: GetStaticProps = async () => { const res = await fetch( SpecialEndPoints.Github.Content('koreanbots', 'verification', 'README.md') ) const json = await res.json() return { props: { content: Buffer.from(json.content, 'base64').toString('utf-8'), }, } } export default Verification