mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
33 lines
886 B
JavaScript
33 lines
886 B
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const NotionPage = dynamic(() => import('@/components/NotionPage'))
|
|
|
|
/**
|
|
* 公告模块
|
|
* 其实就是一篇文章
|
|
* @param {*} param0
|
|
* @returns
|
|
*/
|
|
const Announcement = ({ post, className }) => {
|
|
const { locale } = useGlobal()
|
|
if (!post || Object.keys(post).length === 0) {
|
|
return <></>
|
|
}
|
|
return (
|
|
<aside className='rounded shadow overflow-hidden mb-6'>
|
|
<h3 className='text-sm bg-gray-100 text-gray-700 dark:bg-hexo-black-gray dark:text-gray-200 py-3 px-4 dark:border-hexo-black-gray border-b'>
|
|
<i className='mr-2 fas fa-bullhorn' />
|
|
{locale.COMMON.ANNOUNCEMENT}
|
|
</h3>
|
|
|
|
{post && (
|
|
<div id='announcement-content'>
|
|
<NotionPage post={post} className='text-center' />
|
|
</div>
|
|
)}
|
|
</aside>
|
|
)
|
|
}
|
|
export default Announcement
|