mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
29 lines
735 B
JavaScript
29 lines
735 B
JavaScript
import { getGlobalNotionData } from '@/lib/notion/getNotionData'
|
|
import React from 'react'
|
|
import { useGlobal } from '@/lib/global'
|
|
import * as ThemeMap from '@/themes'
|
|
|
|
const ArchiveIndex = props => {
|
|
const { theme, locale } = useGlobal()
|
|
const ThemeComponents = ThemeMap[theme]
|
|
const { siteInfo } = props
|
|
const meta = {
|
|
title: `${locale.NAV.ARCHIVE} | ${siteInfo.title}`,
|
|
description: siteInfo.description,
|
|
type: 'website'
|
|
}
|
|
|
|
return <ThemeComponents.LayoutArchive {...props} meta={meta}/>
|
|
}
|
|
|
|
export async function getStaticProps () {
|
|
const props = await getGlobalNotionData({ from: 'archive-index' })
|
|
props.posts = props.allPosts
|
|
return {
|
|
props,
|
|
revalidate: 1
|
|
}
|
|
}
|
|
|
|
export default ArchiveIndex
|