Files
NotionNext/pages/404.js
tangly1024.com 0f7e5f2fb9 fix date
2023-06-30 14:28:15 +08:00

29 lines
712 B
JavaScript

import { getGlobalData } from '@/lib/notion/getNotionData'
import { useGlobal } from '@/lib/global'
import { useRouter } from 'next/router'
import { getLayoutByTheme } from '@/themes/theme'
/**
* 404
* @param {*} props
* @returns
*/
const NoFound = props => {
const { siteInfo } = useGlobal()
const meta = { title: `${props?.siteInfo?.title} | 页面找不到啦`, image: siteInfo?.pageCover }
props = { ...props, meta }
// 根据页面路径加载不同Layout文件
const Layout = getLayoutByTheme(useRouter())
return <Layout {...props} />
}
export async function getStaticProps () {
const props = (await getGlobalData({ from: '404' })) || {}
return { props }
}
export default NoFound