mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-19 23:16:48 +00:00
27 lines
921 B
JavaScript
27 lines
921 B
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const NotionPage = dynamic(() => import('@/components/NotionPage'))
|
|
|
|
const Announcement = ({ post, className }) => {
|
|
const { locale } = useGlobal()
|
|
if (post?.blockMap) {
|
|
return <div
|
|
data-aos="fade-up"
|
|
data-aos-duration="300"
|
|
data-aos-once="false"
|
|
data-aos-anchor-placement="top-bottom"
|
|
className={className}>
|
|
<section id='announcement-wrapper' className="hover:shadow-md dark:text-gray-300 border dark:border-black rounded-xl px-2 py-4 bg-white dark:bg-hexo-black-gray">
|
|
<div><i className='mr-2 fas fa-bullhorn' />{locale.COMMON.ANNOUNCEMENT}</div>
|
|
{post && (<div id="announcement-content">
|
|
<NotionPage post={post} className='text-center ' />
|
|
</div>)}
|
|
</section>
|
|
</div>
|
|
} else {
|
|
return <></>
|
|
}
|
|
}
|
|
export default Announcement
|