Files
NotionNext/components/PoweredBy.js
tangly1024 cfde73fbdd hexo 页脚
2024-11-23 12:38:08 +08:00

21 lines
449 B
JavaScript

import { siteConfig } from '@/lib/config'
/**
* 驱动版权
* @returns
*/
export default function PoweredBy(props) {
return (
<div
className={`gap-x-1 flex flex-wrap text-sm font-serif ${props.className || ''}`}>
<span>Powered by</span>
<a
href='https://github.com/tangly1024/NotionNext'
className='underline justify-start'>
NotionNext {siteConfig('VERSION')}
</a>
.
</div>
)
}