mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
31 lines
810 B
JavaScript
31 lines
810 B
JavaScript
import { getGlobalNotionData } from '@/lib/notion/getNotionData'
|
|
import React from 'react'
|
|
import { useGlobal } from '@/lib/global'
|
|
import * as ThemeMap from '@/themes'
|
|
|
|
export default function Category(props) {
|
|
const { theme } = useGlobal()
|
|
const ThemeComponents = ThemeMap[theme]
|
|
const { locale } = useGlobal()
|
|
const { siteInfo } = props
|
|
const meta = {
|
|
title: `${locale.COMMON.CATEGORY} | ${siteInfo?.title}`,
|
|
description: siteInfo?.description,
|
|
image: siteInfo?.pageCover,
|
|
slug: 'category',
|
|
type: 'website'
|
|
}
|
|
return <ThemeComponents.LayoutCategoryIndex {...props} meta={meta} />
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
const props = await getGlobalNotionData({
|
|
from: 'category-index-props',
|
|
categoryCount: 0
|
|
})
|
|
return {
|
|
props,
|
|
revalidate: 1
|
|
}
|
|
}
|