mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
22 lines
443 B
TypeScript
22 lines
443 B
TypeScript
const Notice: React.FC<NoticeProps> = ({ header, desc }) => {
|
|
return (
|
|
<div className='mx-auto my-auto px-10 py-48 h-screen text-center'>
|
|
<h1 className='text-4xl font-bold'>KOREANBOTS</h1>
|
|
<br />
|
|
<div>
|
|
<h1 className='mb-10 text-3xl font-bold'>{header}</h1>
|
|
|
|
<h2 className='text-lg font-semibold'>{desc}</h2>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Notice
|
|
|
|
interface NoticeProps {
|
|
header: string
|
|
desc: string
|
|
}
|