18 lines
574 B
Svelte
18 lines
574 B
Svelte
<script>
|
|
import { _ } from "svelte-i18n";
|
|
import AddContactModal from "./AddContactModal.svelte";
|
|
import team_empty from "../teams/team_empty.svg";
|
|
let modal_open = false;
|
|
let current_contacts = [];
|
|
</script>
|
|
|
|
<div class="text-center items-center justify-center">
|
|
<p class="mb-16 text-lg text-gray-500">
|
|
<img class="w-full h-44" src={team_empty} alt="" />
|
|
<span class="font-bold">{$_('there-are-no-contacts-added-yet')}</span><br />
|
|
<span>{$_('add-your-first-contact')}</span>
|
|
</p>
|
|
</div>
|
|
|
|
<AddContactModal bind:modal_open bind:current_contacts />
|