mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
25 lines
532 B
JavaScript
25 lines
532 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, tagsCount: 0 })
|
|
|
|
return {
|
|
props: {
|
|
tags,
|
|
categories,
|
|
postCount,
|
|
latestPosts
|
|
},
|
|
revalidate: 1
|
|
}
|
|
}
|
|
|
|
export default TagIndex
|