> ## 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.

# Enhanced Exclusive Campaign Logic

> Advanced fill rate distribution for multiple exclusive banner campaigns on the same ad slot

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">July 29, 2025</Badge>
  <Badge color="blue" size="sm" icon="rectangle-ad">Ad Platform</Badge>
  <Badge color="orange" size="sm" icon="arrow-up">Improvement</Badge>
</div>

<Note>
  **Why It's Important**

  Sell the same premium ad slot to multiple exclusive advertisers simultaneously with fill rate percentages, maximizing revenue while providing predictable exposure.
</Note>

## What's New

* **Multiple campaigns with proportional distribution**: Run multiple exclusive banner campaigns on the same slot with automatic impression distribution based on fill rate percentages

```
Slot: Homepage Banner
- Campaign A: 20% fill rate
- Campaign B: 30% fill rate
- Campaign C: 15% fill rate
Total: 65% exclusive, 35% auction-filled
```

## Key Benefits

**Maximize Slot Revenue**:
Sell the same premium ad slot to multiple advertisers simultaneously, increasing overall slot monetization and revenue per placement.

**Advertiser Exposure**:
Provide advertisers with predictable fill rates while allowing multiple brands to share high-value inventory.

**Automatic Optimization**:
System automatically handles proportional distribution and scaling, eliminating manual inventory management complexity.

## Setting Up Exclusive Campaigns

1. **Create first exclusive campaign**: Set up your exclusive banner campaign with desired fill rate percentage

2. **Create additional campaigns**: Add more exclusive campaigns targeting the same slot-trigger combination

3. **Configure fill rates**: Set appropriate fill rate percentages for each campaign (system handles scaling automatically)

4. **Monitor distribution**: Track campaign performance to ensure fill rates meet expectations

5. **Adjust as needed**: Modify fill rate percentages or add/remove campaigns to optimize slot performance

<ChangelogActions />
