Files
NotionNext/themes/simple/components/TopBar.js
tangly1024.com 6ec9dd97aa 顶栏微调
2023-03-09 12:09:11 +08:00

15 lines
442 B
JavaScript

import CONFIG_SIMPLE from '../config_simple'
/**
* 网站顶部 提示栏
* @returns
*/
export const TopBar = (props) => {
if (CONFIG_SIMPLE.TOP_BAR_CONTENT) {
return <header className="w-full flex justify-between items-center px-20 h-10 bg-black dark:bg-hexo-black-gray z-10">
<div className='text-xs text-white z-50' dangerouslySetInnerHTML={{ __html: CONFIG_SIMPLE.TOP_BAR_CONTENT }}/>
</header>
}
return <></>
}