2025-04-25 09:19:31 +08:00
|
|
|
import Header from '@/app/(home)/@header/page'
|
|
|
|
|
import Footer from '@/app/(home)/@footer/page'
|
2025-03-14 12:40:51 +08:00
|
|
|
import {ReactNode} from 'react'
|
|
|
|
|
|
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-03-24 11:45:54 +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>
|
|
|
|
|
)
|
|
|
|
|
}
|