Files
NotionNext/pages/category/index.js
2022-02-28 14:37:27 +08:00

25 lines
574 B
JavaScript

import { getGlobalNotionData } from '@/lib/notion/getNotionData'
import React from 'react'
import { LayoutCategoryIndex } from '@/themes'
export default function Category (props) {
return <LayoutCategoryIndex {...props}/>
}
export async function getStaticProps () {
const from = 'category-index-props'
const { allPosts, categories, tags, postCount, latestPosts, customNav } = await getGlobalNotionData({ from })
return {
props: {
tags,
allPosts,
categories,
postCount,
latestPosts,
customNav
},
revalidate: 1
}
}