# Admin & User Dashboards

FastSvelte ships role-aware dashboards so you don't build admin tooling from scratch. What each user sees is gated by their [role](https://docs.fastsvelte.dev/features/authentication/#roles).

## System Admin

Platform-wide tools (`sys_admin`), under `/admin`:

- **Analytics** — usage and signup metrics
- **Users** — manage all users across every organization
- **Plans** — define subscription tiers and link Stripe products (see [Billing & Subscriptions](https://docs.fastsvelte.dev/features/billing/index.md))
- **Organizations** — create and manage tenants (the entry point for [B2B onboarding](https://docs.fastsvelte.dev/features/multi-tenancy/index.md))
- **AI Usage** — fleet-wide token and credit usage (see [AI Usage & Credit Billing](https://docs.fastsvelte.dev/features/ai-billing/index.md))
- **Health** — system health checks
- **Settings** — system-level settings

## Organization Admin

For `org_admin` (B2B), under `/organization`:

- **Members** — view and manage organization users, change roles
- **Invitations** — invite teammates by email (see [Multi-Tenancy](https://docs.fastsvelte.dev/features/multi-tenancy/index.md))

## User

For every authenticated user:

- **Dashboard** — their workspace overview
- **Billing** — subscription plus AI credits and usage (see [AI Usage & Credit Billing](https://docs.fastsvelte.dev/features/ai-billing/index.md))
- **Profile / Settings** — account details and preferences

Every view is built on the same [role-based access](https://docs.fastsvelte.dev/features/authentication/#roles) and the type-safe [API client](https://docs.fastsvelte.dev/guides/orval/index.md).
