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