import { getGlobalNotionData } from '@/lib/notion/getNotionData' import React from 'react' import { useGlobal } from '@/lib/global' import BLOG from '@/blog.config' import { useRouter } from 'next/router' import { getLayoutByTheme } from '@/themes/theme' /** * 分类首页 * @param {*} props * @returns */ export default function Category(props) { const { locale } = useGlobal() const { siteInfo } = props // 根据页面路径加载不同Layout文件 const Layout = getLayoutByTheme(useRouter()) const meta = { title: `${locale.COMMON.CATEGORY} | ${siteInfo?.title}`, description: siteInfo?.description, image: siteInfo?.pageCover, slug: 'category', type: 'website' } props = { ...props, meta } return } export async function getStaticProps() { const props = await getGlobalNotionData({ from: 'category-index-props' }) delete props.allPages return { props, revalidate: parseInt(BLOG.NEXT_REVALIDATE_SECOND) } }