部分组件统一;magzine页脚微调

This commit is contained in:
tangly1024.com
2024-10-31 12:19:24 +08:00
parent 176b66ef6a
commit 5347ffe7db
21 changed files with 324 additions and 224 deletions

20
components/PoweredBy.js Normal file
View 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>
)
}