import { useGlobal } from '@/lib/global' import dynamic from 'next/dynamic' const NotionPage = dynamic(() => import('@/components/NotionPage')) const Announcement = ({ notice }) => { const { locale } = useGlobal() if (!notice) { return <> } return
{locale.COMMON.ANNOUNCEMENT}
{notice && (
)}
} export default Announcement