26 lines
1.3 KiB
PHP
26 lines
1.3 KiB
PHP
<div>
|
|
<x-team.navbar />
|
|
<h2 class="pb-4">Notifications</h2>
|
|
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'email' }" class="flex h-full">
|
|
<div class="flex flex-col gap-4 min-w-fit">
|
|
<a :class="activeTab === 'email' && 'text-white'"
|
|
@click.prevent="activeTab = 'email'; window.location.hash = 'email'" href="#">Email</a>
|
|
<a :class="activeTab === 'Telegram' && 'text-white'"
|
|
@click.prevent="activeTab = 'telegram'; window.location.hash = 'telegram'" href="#">Telegram</a>
|
|
<a :class="activeTab === 'discord' && 'text-white'"
|
|
@click.prevent="activeTab = 'discord'; window.location.hash = 'discord'" href="#">Discord</a>
|
|
</div>
|
|
<div class="w-full pl-8">
|
|
<div x-cloak x-show="activeTab === 'email'" class="h-full">
|
|
<livewire:notifications.email-settings />
|
|
</div>
|
|
<div x-cloak x-show="activeTab === 'telegram'" class="h-full">
|
|
<livewire:notifications.telegram-settings />
|
|
</div>
|
|
<div x-cloak x-show="activeTab === 'discord'">
|
|
<livewire:notifications.discord-settings />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|