This commit is contained in:
2024-09-24 16:19:41 +05:30
parent 42c4a08615
commit e4925eeb16
16 changed files with 329 additions and 151 deletions

View File

@ -1,5 +1,4 @@
// components/Layout.js
import { Header } from './header';
import { Footer } from './footer';
import { ReactNode } from 'react'; // Import ReactNode
@ -9,7 +8,6 @@ interface LayoutProps {
export function Layout({ children }: LayoutProps) {
return (
<>
<Header />
<main>{children}</main>
<Footer />
</>