- Fork elmeg-demo codebase for multi-band support - Add data importer infrastructure with base class - Create band-specific importers: - phish.py: Phish.net API v5 - grateful_dead.py: Grateful Stats API - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm) - Add spec-kit configuration for Gemini - Update README with supported bands and architecture
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
"use client"
|
|
|
|
import { ReportQueue } from "@/components/admin/report-queue"
|
|
|
|
export default function ReportsPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<h1 className="text-3xl font-bold tracking-tight">Reports</h1>
|
|
<ReportQueue />
|
|
</div>
|
|
)
|
|
}
|