The Creator portal is the primary workspace for content creators in the Ad Management System. Accessible atDocumentation 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, the dashboard gives you an at-a-glance view of how your content is performing — tracking views, earnings, engagement, and audience growth — alongside a preview grid of your most recent content campaigns. From here you can navigate to every other section of the creator experience using the left sidebar.
Dashboard Sections
The dashboard is divided into two main areas: a performance stats strip at the top and a content campaign preview grid below.Performance Stats
Four stat cards surface your most important numbers at a glance. Each card shows the current total and a percentage change indicator (↑ up / ↓ down) relative to the previous period.
Campaign Preview Grid
A grid showing your first 4 content items. Each card displays the content title, description, author label, view count, duration (for video), and live/deleted status. Click View All to open the full campaigns list.
Performance Stats
The fourCreatorStats cards are sourced from lib/data.ts and are rendered as the CreatorStats component at the top of the dashboard.
| Stat | Sample Value | Change | Trend |
|---|---|---|---|
| Total Views | 1,02,345 | 0.65% | ↑ Up |
| Earnings | ₹15,890 | 3.21% | ↑ Up |
| Engagement Rate | 62.8% | 6.5% | ↑ Up |
| Audience Growth | 45,789 | 1.25% | ↓ Down |
levelUp: true) and red for a downward trend (levelDown: true).
Content Campaign Preview Grid
Below the stats, a grid renders the first 4 items from thecontentData array. Every content card exposes the following fields:
| Field | Description |
|---|---|
title | Name of the content piece |
description | Short summary of the content |
author | Displayed as “You” when author === "Creator", or “Advertiser” otherwise |
views | Pulled from engagement_metrics.views |
duration | Video length (e.g. "2:30"); omitted for images and text |
status | Live (active) or Deleted (removed) |
/creator/campaigns. A second View All button in the stats area links to /creator/analytics for the full analytics breakdown.
Creator Sidebar Navigation
The left sidebar is driven bycreatorMenu from lib/menu.ts and provides access to all creator pages:
| Menu Item | Route | Purpose |
|---|---|---|
| Dashboard | /creator | Overview stats and recent content |
| Profile | /creator/profile | Manage profile and social links |
| Campaigns | /creator/campaigns | Top and your campaigns |
| Analytics | /creator/analytics | Content analytics |
| Media Library | /creator/library | Browse content assets |