mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
20 lines
444 B
JavaScript
20 lines
444 B
JavaScript
import { siteConfig } from '@/lib/config'
|
|
|
|
/**
|
|
* 驱动版权
|
|
* @returns
|
|
*/
|
|
export default function PoweredBy(props) {
|
|
return (
|
|
<div className={`inline text-sm font-serif ${props.className || ''}`}>
|
|
<span className='mr-1'>Powered by</span>
|
|
<a
|
|
href='https://github.com/tangly1024/NotionNext'
|
|
className='underline justify-start'>
|
|
NotionNext {siteConfig('VERSION')}
|
|
</a>
|
|
.
|
|
</div>
|
|
)
|
|
}
|