mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
19 lines
532 B
Plaintext
19 lines
532 B
Plaintext
---
|
|
import AvatarList from '@ui/AvatarList.astro';
|
|
import Button from '@ui/Button.astro';
|
|
import CardTitle from '@ui/CardTitle.astro';
|
|
---
|
|
|
|
<div class="card card-lg card-dashed card-transparent">
|
|
<div class="card-body text-center">
|
|
<div class="mb-3">
|
|
<AvatarList stacked={true} />
|
|
</div>
|
|
<CardTitle>No Team Members</CardTitle>
|
|
<p class="text-secondary">Invite your team to<br />collaborate on this project.</p>
|
|
<div class="mt-4">
|
|
<Button text="Invite Members" color="primary" icon="plus" />
|
|
</div>
|
|
</div>
|
|
</div>
|