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

# Toppie Campaigns Tab

> Centralized campaign management interface for viewing, filtering, and managing all your Toppie campaigns

export const ChangelogActions = () => {
  return <>
      <style>{`
        .changelog-actions {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-top: 2rem;
          padding-top: 1.5rem;
          border-top: 1px solid #e5e7eb;
        }
        
        [data-theme="dark"] .changelog-actions {
          border-top-color: #374151;
        }
        
        .changelog-btn {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 8px 16px;
          border-radius: 9999px;
          border: 1px solid #d1d5db;
          background: transparent;
          color: #6b7280;
          font-size: 14px;
          cursor: pointer;
          transition: all 0.2s ease;
        }
        
        .changelog-btn:hover {
          border-color: #9ca3af;
          background: #f9fafb;
        }
        
        [data-theme="dark"] .changelog-btn {
          border-color: #4b5563;
          color: #9ca3af;
        }
        
        [data-theme="dark"] .changelog-btn:hover {
          border-color: #6b7280;
          background: #1f2937;
        }
      `}</style>
      <div className="changelog-actions">
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    btn.innerHTML = "❤️ Like";
    btn.style.borderColor = "#ec4899";
  }}>
          🤍 Like
        </button>
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    navigator.clipboard.writeText(window.location.href);
    const originalContent = btn.innerHTML;
    btn.innerHTML = "✓ Copied";
    btn.style.borderColor = "#22c55e";
    btn.style.color = "#22c55e";
    setTimeout(() => {
      btn.innerHTML = originalContent;
      btn.style.borderColor = "";
      btn.style.color = "";
    }, 2000);
  }}>
          ↗ Share
        </button>
      </div>
    </>;
};

<div style={{ display: "flex", gap: "8px", flexWrap: "wrap", marginBottom: "16px" }}>
  <Badge color="gray" size="sm" icon="calendar">August 3, 2025</Badge>
  <Badge color="red" size="sm" icon="chart-network">Toppie</Badge>
  <Badge color="green" size="sm" icon="sparkles">New Feature</Badge>
</div>

We've released the **Campaigns Tab** in Toppie, providing a centralized hub for managing all your advertising campaigns across retail media networks. This new interface streamlines campaign oversight and enables efficient performance monitoring from one unified dashboard.

<Frame>
  <img src="https://mintcdn.com/topsort/kKtg9wT2hJn2uG4V/images/changelog/toppie-campaign-tab.webp?fit=max&auto=format&n=kKtg9wT2hJn2uG4V&q=85&s=1ceabba1a1f80e6f3382c68b9f0bebcb" alt="Screenshot of Toppie Campaign Tab" width="4704" height="3200" data-path="images/changelog/toppie-campaign-tab.webp" />
</Frame>

## Key Benefits

**Unified Campaign View**:
See all your Sponsored Listings and Banner Ads campaigns in one organized interface

**Real-Time Monitoring**:
Track ad spend, ROAS, and daily budgets with live performance updates

**Quick Campaign Control**:
Instantly activate, pause, or modify campaigns without navigating between pages

**Smart Filtering**:
Filter by campaign type, status, or search by name to find campaigns quickly

**Detailed Analytics Access**:
Click into any campaign for comprehensive performance data and trend analysis

## Campaign Management

### Core Features Available

* Campaign filtering by type (All, Sponsored, Banners)
* Real-time performance metrics display
* Campaign status management (Active/Inactive toggles)
* Search functionality across all campaigns
* Direct access to detailed campaign analytics

### How to Use

1. Navigate to the **Campaigns** tab in your Toppie dashboard

2. Use filter tabs to view specific campaign types or see all campaigns

3. Monitor key metrics (Ad spend, ROAS, Daily Budget) directly from the list view

4. Toggle campaign status using the Active/Inactive controls

5. Click on any campaign name to access detailed performance analytics and settings

***

The Campaigns Tab is available now in your Toppie dashboard. Talk to your Topsort representative about optimizing your campaign management workflow and exploring advanced features within the new interface.

<ChangelogActions />
