2024-03-22 12:25:43 +00:00
|
|
|
<div class="pb-6">
|
|
|
|
<h1>Notifications</h1>
|
|
|
|
<div class="subtitle">Get notified about your infrastructure.</div>
|
|
|
|
<nav class="navbar-main">
|
2024-03-22 13:47:36 +00:00
|
|
|
<a class="{{ request()->routeIs('notifications.email') ? 'dark:text-white' : '' }}"
|
|
|
|
href="{{ route('notifications.email') }}">
|
2024-03-22 12:25:43 +00:00
|
|
|
<button>Email</button>
|
|
|
|
</a>
|
2024-03-22 13:47:36 +00:00
|
|
|
<a class="{{ request()->routeIs('notifications.telegram') ? 'dark:text-white' : '' }}"
|
|
|
|
href="{{ route('notifications.telegram') }}">
|
2024-03-22 12:25:43 +00:00
|
|
|
<button>Telegram</button>
|
|
|
|
</a>
|
2024-03-22 13:47:36 +00:00
|
|
|
<a class="{{ request()->routeIs('notifications.discord') ? 'dark:text-white' : '' }}"
|
|
|
|
href="{{ route('notifications.discord') }}">
|
2024-03-22 12:25:43 +00:00
|
|
|
<button>Discord</button>
|
|
|
|
</a>
|
|
|
|
</nav>
|
|
|
|
</div>
|