> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mirurobotics.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Your profile

export const LEFT_TOOLTIP = {
  tip: "The member left the workspace; they cannot login to the workspace or access any resources",
  cta: "Learn more",
  href: "/admin/users/overview#status"
};

export const Framed = ({image, background, link, alt = "Framed content", borderWidth = "24px", outerRadius = "10px", innerRadius = "6px"}) => {
  const parseShorthand = value => {
    const values = String(value).trim().split(/\s+/);
    switch (values.length) {
      case 1:
        return [values[0], values[0], values[0], values[0]];
      case 2:
        return [values[0], values[1], values[0], values[1]];
      case 3:
        return [values[0], values[1], values[2], values[1]];
      default:
        return values.slice(0, 4);
    }
  };
  const isZero = v => parseFloat(v) === 0;
  const padding = parseShorthand(borderWidth);
  const outer = parseShorthand(outerRadius);
  const cornerMasks = [];
  if (isZero(padding[0]) && isZero(padding[3])) {
    cornerMasks.push(`radial-gradient(circle at 0% 0%, transparent ${outer[0]}, black ${outer[0]})`);
  }
  if (isZero(padding[0]) && isZero(padding[1])) {
    cornerMasks.push(`radial-gradient(circle at 100% 0%, transparent ${outer[1]}, black ${outer[1]})`);
  }
  if (isZero(padding[2]) && isZero(padding[1])) {
    cornerMasks.push(`radial-gradient(circle at 100% 100%, transparent ${outer[2]}, black ${outer[2]})`);
  }
  if (isZero(padding[2]) && isZero(padding[3])) {
    cornerMasks.push(`radial-gradient(circle at 0% 100%, transparent ${outer[3]}, black ${outer[3]})`);
  }
  const backgroundMask = cornerMasks.length > 0 ? cornerMasks.join(", ") : undefined;
  const innerImage = <img src={image} alt={alt} noZoom={link ? true : false} style={{
    display: "block",
    width: "100%",
    margin: 0,
    borderRadius: 0
  }} />;
  return <div style={{
    display: "inline-block",
    position: "relative",
    borderRadius: outerRadius,
    overflow: "hidden"
  }}>
            {}
            {background && <div style={{
    position: "absolute",
    inset: 0,
    backgroundImage: `url(${background})`,
    backgroundSize: "cover",
    maskImage: backgroundMask,
    WebkitMaskImage: backgroundMask,
    maskComposite: "intersect",
    WebkitMaskComposite: "source-in"
  }} />}
            {}
            <div style={{
    position: "relative",
    padding: borderWidth
  }}>
                <div style={{
    borderRadius: innerRadius,
    overflow: "hidden",
    lineHeight: 0
  }}>
                    {link ? <a href={link}>{innerImage}</a> : innerImage}
                </div>
            </div>
        </div>;
};

<Framed background="https://assets.mirurobotics.com/docs/v04/images/users/background.jpeg" image="https://assets.mirurobotics.com/docs/v04/images/users/profile/header.png" borderWidth={"30px 40px 0 40px"} innerRadius={"8px 8px 0 0"} />

The profile page lets you update your account information, such as your name and workspace access.

You can find your [Profile page](https://app.mirurobotics.com/settings/profile) by selecting the settings page from the workspace dropdown in the top left corner of the application.

## Name

To update your name, edit the **First name** and **Last name** fields and hit **Enter** on your keyboard.

<Frame>
  ![Name Fields](https://assets.mirurobotics.com/docs/v04/images/users/profile/name-fields.png)
</Frame>

## Avatar

To set your avatar, hover over your avatar and select **Change avatar**.

<Frame>
  ![Avatar Field](https://assets.mirurobotics.com/docs/v04/images/users/profile/avatar-field.png)
</Frame>

Select the image you want to use from the file system. A dialog will appear, allowing you to crop the image.

<Frame>
  ![Crop Avatar Dialog](https://assets.mirurobotics.com/docs/v04/images/users/profile/crop-avatar-dialog.png)
</Frame>

Crop the image to your desired size, then click **Save** to set your avatar.

## Preferences

Preferences offer high level adjustments to your account:

* **Display names** - select whether to see only first names or full names across the app.

<Frame>
  ![Preferences](https://assets.mirurobotics.com/docs/v04/images/users/profile/preferences.png)
</Frame>

## Leave your workspace

Leaving a workspace removes all access to your workspace and sets your status to <Tooltip tip={LEFT_TOOLTIP.tip} cta={LEFT_TOOLTIP.cta} href={LEFT_TOOLTIP.href}>left</Tooltip>:

* You are immediately logged out
* You cannot login to this workspace or access any resources (signing in with the same email address creates a new workspace with a new account)

Leaving a workspace is reversible if you are *not the only active member*. An admin can invite you back to the workspace at any time.

However, if you are *the only* active member of a workspace, leaving the workspace will delete the workspace and all associated resources.

To leave your workspace, navigate to the [Profile page](https://app.mirurobotics.com/settings/profile) and click **Leave workspace**.

<Frame>
  ![Workspace Access](https://assets.mirurobotics.com/docs/v04/images/users/profile/workspace-access.png)
</Frame>

If the **leave workspace** button is disabled, you are not the only member of the workspace and must first [transfer ownership](/admin/workspace#transfer-ownership) to another member.
