mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-01 15:10:14 +00:00
load 优化
This commit is contained in:
@@ -6,10 +6,12 @@ import { siteConfig } from '@/lib/config'
|
||||
* @returns
|
||||
*/
|
||||
export const TopBar = (props) => {
|
||||
if (siteConfig('SIMPLE_TOP_BAR_CONTENT', null, CONFIG)) {
|
||||
const content = siteConfig('SIMPLE_TOP_BAR_CONTENT', null, CONFIG)
|
||||
|
||||
if (content) {
|
||||
return <header className="flex justify-center items-center bg-black dark:bg-hexo-black-gray">
|
||||
<div id='top-bar-inner' className='max-w-9/10 w-full z-20'>
|
||||
<div className='text-xs text-center float-left text-white z-50 leading-5 py-2.5' dangerouslySetInnerHTML={{ __html: siteConfig('SIMPLE_TOP_BAR_CONTENT', null, CONFIG) }}/>
|
||||
<div className='text-xs text-center float-left text-white z-50 leading-5 py-2.5' dangerouslySetInnerHTML={{ __html: content }}/>
|
||||
</div>
|
||||
</header>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user