17 lines
513 B
TypeScript
17 lines
513 B
TypeScript
|
|
import { InvitationsManager } from '@/components/admin/invitations/invitations-manager';
|
||
|
|
|
||
|
|
export default function InvitationsPage() {
|
||
|
|
return (
|
||
|
|
<div className="space-y-6">
|
||
|
|
<div>
|
||
|
|
<h1 className="text-2xl font-semibold">Invitations</h1>
|
||
|
|
<p className="text-sm text-muted-foreground">
|
||
|
|
Send a single-use invitation to a new CRM user. The recipient sets their own password via
|
||
|
|
the link in the email.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
<InvitationsManager />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|