diff --git a/pages/page/[page].js b/pages/page/[page].js index 6a07589c..9d879940 100644 --- a/pages/page/[page].js +++ b/pages/page/[page].js @@ -2,11 +2,12 @@ import BLOG from '@/blog.config' import { getPostBlocks } from '@/lib/notion' import { getGlobalNotionData } from '@/lib/notion/getNotionData' import { useGlobal } from '@/lib/global' +import Custom404 from '../404' const Page = (props) => { const { ThemeComponents } = useGlobal() if (!props?.meta) { - return + return } return }