Files
NotionNext/pages/tag/index.js
2022-03-03 21:28:08 +08:00

27 lines
617 B
JavaScript

import { getGlobalNotionData } from '@/lib/notion/getNotionData'
import React from 'react'
import { useGlobal } from '@/lib/global'
const TagIndex = (props) => {
const { ThemeComponents } = useGlobal()
return <ThemeComponents.LayoutTagIndex {...props} />
}
export async function getStaticProps () {
const from = 'tag-index-props'
const { categories, tags, postCount, latestPosts, customNav } = await getGlobalNotionData({ from, tagsCount: 0 })
return {
props: {
tags,
categories,
postCount,
latestPosts,
customNav
},
revalidate: 1
}
}
export default TagIndex