fix header menu

This commit is contained in:
hamid zarghami
2025-08-07 08:50:12 +03:30
parent 19b3812ae6
commit cabec5b329
9 changed files with 80 additions and 4 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
import Footer from '@/share/Footer'
import Header from '@/share/Header'
import { FC, ComponentType } from 'react'
// import Header from '@/share/Header'
@@ -14,7 +15,7 @@ const Layout: FC<LayoutProps> = ({ children }) => {
<main className="flex-1">
{children}
</main>
{/* <Footer /> */}
<Footer />
</div>
)
}