Files
NotionNext/components/PoweredBy.js
2025-02-07 16:29:30 +08:00

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>
)
}