This commit is contained in:
2024-09-23 17:35:17 +05:30
parent 3af994c1a3
commit 322c92982d
24 changed files with 603 additions and 125 deletions

13
src/components/layout.tsx Normal file
View File

@ -0,0 +1,13 @@
// components/Layout.js
import Header from './header';
import Footer from './footer';
export default function Layout({ children }) {
return (
<>
<Header />
<main>{children}</main>
<Footer />
</>
);
}