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
+4
View File
@@ -1,11 +1,15 @@
import { NextPage } from 'next'
import withLayout from '@/hoc/withLayout'
import Carousel from './home/components/Carousel'
import HotOffer from './home/components/HotOffer'
const Home: NextPage = () => {
return (
<div>
<Carousel />
<div className='mt-24 px-20'>
<HotOffer />
</div>
</div>
)
}