import { HowToStep } from './_shared'; const li = 'text-sm text-slate-700 dark:text-slate-300'; const ol = 'list-decimal pl-5 space-y-1 ' + li; export default function AnalyticsSection() { return ( <>

📈 Reports

Generate revenue, occupancy, agent performance, and passenger analytics reports with custom date ranges. Access level: Supervisor, Admin.

{[ ['Revenue', 'Total, by route, by class, by payment method'], ['Occupancy', 'Seat utilisation %, peak/off-peak analysis'], ['Agent Performance', 'Counter bookings, commission, ranking'], ['Passenger Analytics', 'New vs repeat, loyalty stats, regional split'], ].map(([t, d]) => (
{t}
{d}
))}

📈 How-To: Generate Reports

  1. Click Reports in Analytics & Reports
  2. Select report type, set date range, apply optional route/agent filters
  3. Choose group-by: Day / Week / Month / Year
  4. Click Generate Report
  1. Download as PDF, Excel, or CSV
  2. Click Save Report to store config for one-click re-runs
); }