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'
|
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/>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|