Files
NotionNext/pages/404.js
tangly1024 e791752e68 async theme
2023-06-04 17:17:38 +08:00

24 lines
765 B
JavaScript

import { getGlobalNotionData } from '@/lib/notion/getNotionData'
import { useGlobal } from '@/lib/global'
import dynamic from 'next/dynamic'
import Loading from '@/components/Loading'
/**
* 404
* @param {*} props
* @returns
*/
const NoFound = props => {
const { theme, siteInfo } = useGlobal()
const meta = { title: `${props?.siteInfo?.title} | 页面找不到啦`, image: siteInfo?.pageCover }
const Layout404 = dynamic(() => import(`@/themes/${theme}/Layout404`).then(async (m) => { return m.Layout404 }), { ssr: false, loading: () => <Loading /> })
return <Layout404 {...props} meta={meta}/>
}
export async function getStaticProps () {
const props = (await getGlobalNotionData({ from: '404' })) || {}
return { props }
}
export default NoFound