'use client' import { UploadOutlined, DeleteOutlined } from '@ant-design/icons' import { Button, Input, Typography, Upload, Form } from 'antd' import { useState } from 'react' const { Title, Text } = Typography const ProfileSettings = () => { const [companyName, setCompanyName] = useState('') const [role, setRole] = useState('') const [profileName, setProfileName] = useState('') const [newPassword, setNewPassword] = useState('') const [confirmPassword, setConfirmPassword] = useState('') return (
{/* 1. Profile Photo */}

Profile Photo

Profile
{/* 2. Company Info */}

Company Info

Company Name}> setCompanyName(e.target.value)} /> My Role}> setRole(e.target.value)} />
{/* 3. Profile Name */}

Profile Name

Profile Name}> setProfileName(e.target.value)} />
{/* 4. Change Password */}

Change Password

New Password}> setNewPassword(e.target.value)} /> Confirm Password}> setConfirmPassword(e.target.value)} />
{/* 5. Delete Account */}

Delete Account

Your account and data will be permanently deleted.
) } export default ProfileSettings