landing-2

This commit is contained in:
tangly1024.com
2024-02-08 10:08:22 +08:00
parent 7f19775ae9
commit 5e059e8c2d

View File

@@ -58,18 +58,20 @@ const LayoutBase = (props) => {
loadExternal()
}, [])
return <div id='theme-landing-2' className="flex flex-col justify-between bg-white dark:bg-black">
return <>
<Style/>
<div id='theme-landing-2' className="flex flex-col justify-between bg-white dark:bg-black">
<NavBar/>
<NavBar/>
{children}
<Footer/>
{children}
{/* 悬浮按钮 */}
<BackToTopButton/>
<MadeWithButton/>
<Footer/>
</div>
{/* 悬浮按钮 */}
<BackToTopButton/>
<MadeWithButton/>
</div>
</>
}
/**