import { siteConfig } from '@/lib/config' import { useGlobal } from '@/lib/global' import Giscus from '@giscus/react' /** * Giscus评论 @see https://giscus.app/zh-CN * Contribute by @txs https://github.com/txs/NotionNext/commit/1bf7179d0af21fb433e4c7773504f244998678cb * @returns {JSX.Element} * @constructor */ const GiscusComponent = () => { const { isDarkMode } = useGlobal() const theme = isDarkMode ? 'dark' : 'light' return ( ) } export default GiscusComponent