Documentation
Analytics
The Foundation plan ships with a dedicated analytics dashboard powered by server-side queries and client-side charts.
Data fetching
`src/app/dashboard/analytics/page.tsx` is a server component, so you can hit Prisma directly (or an external warehouse) before streaming chart-ready data to the client.
Relevant files
src/app/dashboard/analytics/page.tsx— Analytics route
Chart primitives
Charts are centralized in `src/components/ui/chart.tsx` and `src/components/chart-area-interactive.tsx`, giving you a consistent theming layer for Recharts visualizations.
Relevant files
src/components/ui/chart.tsx— Chart containersrc/components/chart-area-interactive.tsx— Area chart example