menu profile

This commit is contained in:
hamid zarghami
2025-08-26 09:26:26 +03:30
parent 05e8709a43
commit eba518e67b
4 changed files with 83 additions and 3 deletions
+4 -2
View File
@@ -5,6 +5,7 @@ import Input from '@/components/Input'
import { Edit2 } from 'lucide-react'
import withLayout from '@/hoc/withLayout'
import { Heart, ShoppingCart } from 'iconsax-react'
import Menu from './components/Menu'
const ProfilePage = () => {
const [userInfo, setUserInfo] = useState({
@@ -37,7 +38,8 @@ const ProfilePage = () => {
return (
<div className="p-6">
<div>
<Menu />
<div className='mt-10'>
<div className="flex gap-6">
{/* Left Content - Form */}
<div className="flex-1 ">
@@ -171,7 +173,7 @@ const ProfilePage = () => {
</div>
</div>
</div>
</div>
</div >
)
}