Merge branch 'release/4.0.0' into feat/new-theme-heo

This commit is contained in:
tangly1024.com
2023-07-13 10:19:42 +08:00

View File

@@ -78,7 +78,7 @@ const LayoutBase = (props) => {
</div>
<div className='w-72 fixed left-0 bottom-0 z-20 bg-white'>
<Footer {...props}/>
<Footer {...props} />
</div>
</div>
@@ -181,7 +181,7 @@ const LayoutIndex = (props) => {
})
}, [])
return <LayoutBase {...props}/>
return <LayoutBase {...props} />
}
/**
@@ -191,7 +191,7 @@ const LayoutIndex = (props) => {
* @returns
*/
const LayoutPostList = (props) => {
return <LayoutBase {...props}/>
return <LayoutBase {...props} />
}
/**
@@ -215,9 +215,6 @@ const LayoutSlug = (props) => {
{/* Notion文章主体 */}
{post && (<section id="article-wrapper" className="px-1">
<NotionPage post={post} />
</section>)}
<section>
{/* 分享 */}
<ShareBar post={post} />
@@ -234,7 +231,7 @@ const LayoutSlug = (props) => {
<AdSlot />
<Comment frontMatter={post} />
</section>
</section>)}
<TocDrawer {...props} />
</div>}