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

# <ProfileLink />

The `<ProfileLink />` component displays a link to the profile page of your customer portal.

### Props

<ParamField path="children" type="ReactNode" required={true}>
  The content of the link.
</ParamField>

### Example

```tsx theme={null}
import { ProfileLink } from "@kobbleio/next/client";

export default function MyComponent() {
    return (
        <ProfileLink>
            <span class={'something'}>View my profile</span>
        </ProfileLink>
    );
}
```
