# Saturday Seat Scout Event Intake

Use this when adding a new event to `src/data/events.ts`.

## Required Research

- Confirm event name, venue, city, state, date, and time from a reliable public source.
- Create a short, readable slug ending in tickets.
- Pick the category and tags that match buyer intent.
- Write a specific buyer angle instead of generic ticket copy.
- Add seat, parking, and timing notes that answer real buyer objections.
- Set a conservative demand score, then revise after checking search volume, sellout status, or resale movement.
- Include sourceLabel and sourceUrl before using the page for paid traffic.
- Run npm run build and review /dashboard/ for source gaps, thin markets, and placeholders.

## Event Object Template

```ts
{
  "slug": "artist-team-city-venue-tickets",
  "name": "Artist or Team at Venue",
  "shortName": "Artist or Team",
  "category": "Concert",
  "city": "City",
  "citySlug": "city-events",
  "state": "ST",
  "venue": "Venue Name",
  "eventDate": "2026-01-01",
  "dateLabel": "Thu, Jan 1",
  "timeLabel": "7:30 PM",
  "market": "Arena concert",
  "demandScore": 85,
  "getInLabel": "$$",
  "trendLabel": "High-intent demand",
  "inventoryLabel": "Explain why this event deserves a page: weekend timing, low inventory, star demand, rivalry interest, venue size, or travel pull.",
  "buyerAngle": "Explain why a buyer would search for this event and what decision help they need before clicking to resale inventory.",
  "timingNote": "Explain when to refresh the page: sellout signals, lineup news, ranking changes, weather, hotel pressure, or last-minute demand.",
  "parkingNote": "Add practical venue arrival context: transit, rideshare, garages, tailgate lots, neighborhood traffic, or entry timing.",
  "seatingNote": "Explain the most important seat comparisons: floor, lower bowl, club, upper-level value, sideline, shade, obstructed view, or visitor sections.",
  "imageUrl": "https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1400&q=82",
  "sourceLabel": "Official venue or event calendar",
  "sourceUrl": "https://example.com/event-source",
  "status": "in-demand",
  "tags": [
    "premium",
    "arena"
  ]
}
```
