This commit is contained in:
2026-02-11 22:30:04 +09:00
parent be1f627457
commit 30835f78d4
75 changed files with 4878 additions and 143 deletions

View File

@@ -0,0 +1,21 @@
import { ReactNode } from 'react'
import Footer from '../Footer/Footer';
import Header from '../Blocks/Header/Header';
interface LayoutProps {
children: ReactNode;
}
export default function MainLayout({ children }: LayoutProps) {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-1 px-6 py-4">
{children}
</main>
<Footer />
</div>
);
}