调整前端目录结构

This commit is contained in:
2025-05-10 12:08:04 +08:00
parent 3c7d84165c
commit 8e09da9912
41 changed files with 2909 additions and 355 deletions

View File

@@ -0,0 +1,18 @@
import Header from "../components/Header";
import Footer from "../components/Footer";
export default function LayoutWithHeaderFooter({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<Header />
<main className="flex-1 flex flex-col bg-zinc-50">
{children}
</main>
<Footer />
</>
)
}