mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-18 07:26:48 +00:00
部分组件统一;magzine页脚微调
This commit is contained in:
20
components/PoweredBy.js
Normal file
20
components/PoweredBy.js
Normal file
@@ -0,0 +1,20 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user