Files
NotionNext/pages/tag/index.js
2022-01-15 21:38:47 +08:00

34 lines
583 B
JavaScript

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