import { ROWS } from "@/lib/reports"; export default function Home() { return (

Acme Reports

Your signups and revenue by region. Viewing is free.

{ROWS.map((r) => ( ))}
Region Signups Revenue (sats)
{r.region} {r.signups} {r.revenueSats.toLocaleString()}

Pro export

Download the full dataset as CSV. This is a paid feature:{" "} /api/export.

); }