import { useSettingsNavigation } from "../hooks/useSettingsNavigation"; import SettingsHeader from "../components/SettingsHeader"; const ProfilePanel = () => { const { navigateBack } = useSettingsNavigation(); return (

Profile Settings

Update your profile information, avatar, and personal preferences.

Coming Soon
); }; export default ProfilePanel;