grid wrapper + newest products + latest blogs

This commit is contained in:
hamid zarghami
2025-08-09 12:40:38 +03:30
parent b224b0c521
commit 90b47740c6
14 changed files with 617 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
import { FC } from 'react'
const Banners3: FC = () => {
return (
<div className='flex gap-4 h-[500px]'>
<div className='flex flex-col gap-4 h-full flex-1'>
<div className='flex-1 bg-red-50 h-full'>
</div>
<div className='flex-1 bg-red-50 h-full'>
</div>
</div>
<div className='flex-1 bg-blue-50 h-full'>
</div>
</div>
)
}
export default Banners3