# Profile

URL: https://docs.blux.cc/react/usage/profile

Display and manage the connected user's profile using the Blux SDK.

Blux provides a built-in profile modal that displays account information for the connected user. Open it by calling `profile()` from the `useBlux` hook.

## Import
```tsx
```

## Usage
```tsx

function ProfileButton() {
  const { profile, isAuthenticated } = useBlux();

  return (
    <button disabled={!isAuthenticated} onClick={profile}>
      View Profile
    </button>
  );
}
```

## Screenshots

![Profile modal](/img/Profile.png)