dashboard-v2/frontend/src/components/InviteBadge.svelte
Ryan aed0f28f13
Migrate to svelte for frontend (#9)
* Svelte: WIP

* WIP

* WIP

* WIP

* WIP

* WIP

* Finished

* Remove redundant code

* Fix typo

* Re-add routes

* Form margin

* Mobile nicities

* Mobile changed

* Increase keepalvie

* Update Guild.svelte

* Update Whitelabel.svelte

* Whitelabel changes
2021-06-30 15:40:55 +01:00

16 lines
347 B
Svelte

<div class="guild-badge" on:click={invite}>
<div class="guild-icon-bg">
<i class="fas fa-plus fa-2x guild-icon-fa"></i>
</div>
<div>
<span class="guild-name">Invite to your server</span>
</div>
</div>
<script>
function invite() {
window.location.href = `https://invite.ticketsbot.net`;
}
</script>