'use client'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { BarChart3 } from 'lucide-react'; export default function ReportsPage() { return (

Reports

Financial and operational reports

{['Collections Report', 'Subscriber Growth', 'Invoice Aging', 'Technician Performance'].map( (report) => ( {report}

Coming soon — report generation will be available here.

) )}
); }