Insert Invite card into left rail
cgen-f78c0ee34dc047d1b91a2e07065bd083
This commit is contained in:
parent
129f9d0c74
commit
cb20e16a9b
1 changed files with 22 additions and 0 deletions
|
|
@ -165,6 +165,28 @@ export default function Network() {
|
|||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50">
|
||||
<CardHeader>
|
||||
<CardTitle>Invite collaborator</CardTitle>
|
||||
<CardDescription>Grow your network</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-3">
|
||||
<div className="flex gap-2">
|
||||
<Input
|
||||
placeholder="name@company.com"
|
||||
value={inviteEmail}
|
||||
onChange={(e) => setInviteEmail(e.target.value)}
|
||||
/>
|
||||
<Button onClick={handleInvite} disabled={inviteSending}>
|
||||
Send
|
||||
</Button>
|
||||
</div>
|
||||
<p className="text-xs text-muted-foreground">
|
||||
Accepted invites boost your loyalty, XP, and reputation.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-card/50 border-border/50">
|
||||
<CardHeader>
|
||||
<CardTitle>Recommendations</CardTitle>
|
||||
|
|
|
|||
Loading…
Reference in a new issue