This commit is contained in:
eric
2025-11-13 05:05:53 +08:00
parent cbdc65f56e
commit 891af61146
691 changed files with 83952 additions and 0 deletions

17
app/components/Layout.tsx Normal file
View File

@@ -0,0 +1,17 @@
import { ReactNode } from 'react'
import Header from './Header'
import Footer from './Footer'
interface LayoutProps {
children: ReactNode
}
export default function Layout({ children }: LayoutProps) {
return (
<div className="flex flex-col min-h-screen">
<Header />
<main className="flex-grow">{children}</main>
<Footer />
</div>
)
}