Files
NotionNext/pages/tag/index.js
2024-03-10 13:08:18 +08:00

29 lines
723 B
JavaScript

import { getGlobalData } from '@/lib/db/getSiteData'
import BLOG from '@/blog.config'
import { useRouter } from 'next/router'
import { getLayoutByTheme } from '@/themes/theme'
import { siteConfig } from '@/lib/config'
/**
* 标签首页
* @param {*} props
* @returns
*/
const TagIndex = props => {
// 根据页面路径加载不同Layout文件
const Layout = getLayoutByTheme({ theme: siteConfig('THEME'), router: useRouter() })
return <Layout {...props} />
}
export async function getStaticProps() {
const from = 'tag-index-props'
const props = await getGlobalData({ from })
delete props.allPages
return {
props,
revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND)
}
}
export default TagIndex