mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
36 lines
844 B
JavaScript
36 lines
844 B
JavaScript
import { getGlobalNotionData } from '@/lib/notion/getNotionData'
|
|
import React from 'react'
|
|
import { useGlobal } from '@/lib/global'
|
|
import * as ThemeMap from '@/themes'
|
|
|
|
/**
|
|
* 标签首页
|
|
* @param {*} props
|
|
* @returns
|
|
*/
|
|
const TagIndex = props => {
|
|
const { theme } = useGlobal()
|
|
const ThemeComponents = ThemeMap[theme]
|
|
const { locale } = useGlobal()
|
|
const { siteInfo } = props
|
|
const meta = {
|
|
title: `${locale.COMMON.TAGS} | ${siteInfo?.title}`,
|
|
description: siteInfo?.description,
|
|
image: siteInfo?.pageCover,
|
|
slug: 'tag',
|
|
type: 'website'
|
|
}
|
|
return <ThemeComponents.LayoutTagIndex {...props} meta={meta} />
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
const from = 'tag-index-props'
|
|
const props = await getGlobalNotionData({ from })
|
|
return {
|
|
props,
|
|
revalidate: 1
|
|
}
|
|
}
|
|
|
|
export default TagIndex
|