2025-03-14 12:40:51 +08:00
|
|
|
import {ReactNode} from 'react'
|
2025-11-18 19:16:24 +08:00
|
|
|
import Header from './header'
|
|
|
|
|
import Footer from './footer'
|
2026-02-27 15:03:17 +08:00
|
|
|
import Script from 'next/script'
|
2025-03-14 12:40:51 +08:00
|
|
|
|
2025-04-25 09:19:31 +08:00
|
|
|
export type HomeLayoutProps = {
|
2025-03-14 12:40:51 +08:00
|
|
|
children: ReactNode
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-25 09:19:31 +08:00
|
|
|
export default function HomeLayout(props: HomeLayoutProps) {
|
2025-03-14 12:40:51 +08:00
|
|
|
return (
|
2025-06-07 11:49:57 +08:00
|
|
|
<div className="overflow-auto bg-blue-50 flex flex-col items-stretch relative">
|
2025-03-14 12:40:51 +08:00
|
|
|
{/* 页头 */}
|
|
|
|
|
<Header/>
|
|
|
|
|
|
|
|
|
|
{/* 正文 */}
|
|
|
|
|
{props.children}
|
|
|
|
|
|
|
|
|
|
{/* 页脚 */}
|
|
|
|
|
<Footer/>
|
2026-02-27 15:03:17 +08:00
|
|
|
|
|
|
|
|
<Script id="qd2852138148beb7882a4a6a3e5ff5b569436003e7dc" src="https://wp.qiye.qq.com/qidian/2852138148/beb7882a4a6a3e5ff5b569436003e7dc" async defer></Script>
|
2025-03-14 12:40:51 +08:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|