mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 23:16:48 +00:00
26 lines
540 B
JavaScript
26 lines
540 B
JavaScript
import { getGlobalNotionData } from '@/lib/notion/getNotionData'
|
|
import React from 'react'
|
|
import { LayoutArchive } from '@/themes'
|
|
|
|
export async function getStaticProps () {
|
|
const { allPosts, categories, tags, postCount, customNav } =
|
|
await getGlobalNotionData({ from: 'archive-index' })
|
|
|
|
return {
|
|
props: {
|
|
posts: allPosts,
|
|
tags,
|
|
categories,
|
|
postCount,
|
|
customNav
|
|
},
|
|
revalidate: 1
|
|
}
|
|
}
|
|
|
|
const ArchiveIndex = (props) => {
|
|
return <LayoutArchive {...props}/>
|
|
}
|
|
|
|
export default ArchiveIndex
|