The Profile page is your public-facing identity within the Ad Management System. From here you can update your cover image and profile photo, review your audience statistics, edit your bio, and manage the social media links that appear on your profile. All visual changes are applied instantly in the browser via a Zustand image store, giving you immediate feedback as you personalise your page. Route:Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Priyanshu471/ad-management/llms.txt
Use this file to discover all available pages before exploring further.
/creator/profile
Profile Sections
Cover Image
A full-width banner displayed at the top of your profile. Click the camera icon in the bottom-right corner of the cover area to upload a replacement image from your device.
Profile Photo
A circular avatar overlaid on the cover image. Click the camera icon on the avatar to upload a new profile photo. Supported formats follow standard browser
<input type="file" accept="image/*"> constraints.Audience Stats
A three-column stat bar displayed directly below the profile photo showing your current Posts, Followers, and Following counts.
About Me
A bio/description text section where you can introduce yourself and describe the type of content you create.
Social Links
Icon links to your external social profiles: Facebook, Twitter, LinkedIn, Instagram, and Dribbble.
Name & Role
Your display name and role label are shown beneath the profile photo. These values are sourced from the
useUser() store and are editable via the Profile Modal in the header dropdown.Audience Stats
The stat bar shows three fixed metrics pulled from your creator account:| Stat | Sample Value |
|---|---|
| Posts | 259 |
| Followers | 129K |
| Following | 2K |
Image Management
Profile and cover images are managed client-side using theuseImage() Zustand store defined in hooks/useImage.tsx:
hooks/useImage.tsx
URL.createObjectURL(file) and immediately passes the resulting object URL to setUserImgUrl or setCoverImgUrl, updating the store and re-rendering the image in place with no network round-trip.
How to Change Your Profile Photo or Cover Image
Click the camera icon
For the profile photo, click the camera icon overlaid on your circular avatar. For the cover image, click the camera icon in the bottom-right corner of the banner.
Select a file from your device
A native file picker opens. Choose any image file (
image/*) from your device and confirm the selection.Updating Your Name
Your display name and role are sourced from theuseUser() store. To edit your name, open the Profile Modal by clicking the top-right avatar menu and selecting My Profile. The modal lets you update your name and email. The role field is displayed but is read-only. Changes are saved by clicking Save and are reflected across the creator portal immediately.