mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-07 15:10:32 +00:00
【Bug修复】修复Medium主题footer中<h1>{title}</h1>显示空白的问题
This commit is contained in:
@@ -20,7 +20,7 @@ import BLOG from '@/blog.config'
|
|||||||
* @constructor
|
* @constructor
|
||||||
*/
|
*/
|
||||||
const LayoutBase = props => {
|
const LayoutBase = props => {
|
||||||
const { children, meta, showInfoCard = true, slotRight, slotTop } = props
|
const { children, meta, showInfoCard = true, slotRight, slotTop, siteInfo } = props
|
||||||
const { locale } = useGlobal()
|
const { locale } = useGlobal()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@ const LayoutBase = props => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* 移动端底部 */}
|
{/* 移动端底部 */}
|
||||||
<Footer />
|
<Footer title={siteInfo?.title}/>
|
||||||
<BottomMenuBar className='block md:hidden' />
|
<BottomMenuBar className='block md:hidden' />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user