mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
import { useGlobal } from '@/lib/global'
|
|
|
|
/**
|
|
* 版权声明
|
|
* @returns
|
|
*/
|
|
export default function NotByAI() {
|
|
const { lang, isDarkMode } = useGlobal()
|
|
|
|
return (
|
|
<img
|
|
className='transform hover:scale-110 duration-150'
|
|
src={`/svg/not-by-ai/${lang}/Written-By-Human-Not-By-AI-Badge-${isDarkMode ? 'black' : 'white'}.svg`}
|
|
alt='not-by-ai'
|
|
/>
|
|
)
|
|
}
|