The Creator Media Library is your centralised hub for browsing creative assets within 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/library, the page heading reads “Your Content” and renders the shared MultiMediaLibrary component. The library displays a fixed grid of 10 images with category filter buttons and a pagination control.
Route: /creator/library
Library Features
The media library is powered by the sharedMultiMediaLibrary component from components/Library/index.tsx, which is used by both the Creator and Advertiser portals.
Category Filter Buttons
The top of the page shows four filter buttons: All categories, Images, Logo, and Videos. The buttons are rendered but category filtering is not yet implemented — clicking a button does not change the displayed grid.
Image Grid
Assets are displayed in a responsive grid — 2 columns on mobile and 4 columns on desktop. The grid currently renders 10 static images sourced from Flowbite’s public image CDN.
Category Filter Buttons
The filter bar renders an All categories button followed by one button per category defined in the component:| Button | Intended Content |
|---|---|
| All categories | All assets regardless of type |
| Images | Static image assets |
| Logo | Brand logo assets |
| Videos | Video assets |
The category buttons do not yet have click handlers that filter the displayed grid. Selecting a category button currently has no effect on the results shown. Filtering behaviour is planned for a future update.
Pagination
TheMultiMediaLibrary component calculates totalPages as content / contentPerPage (both set to 10), which evaluates to 1. Pagination controls are rendered but only a single page of results is currently available.
How to Open the Media Library
Open the Media Library
Click Media Library in the left sidebar, or navigate directly to
/creator/library.Shared Component
Both the Advertiser and Creator portals use the same
MultiMediaLibrary component from components/Library/index.tsx. The primary difference is the page heading: the Creator library displays “Your Content”. All grid layout and pagination behaviour is identical between the two portals.