diff options
| author | Kit La Touche <kit@transneptune.net> | 2025-08-03 23:02:37 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2025-08-03 23:02:37 -0400 |
| commit | e6cba7c6d273b400eb70d10b1cab8a3bcc42b251 (patch) | |
| tree | e57cf1e9bcde3df4ea01476cb2a3aba9039d83af /ui/routes | |
| parent | 12f8614f6b085050b4a3d7f7bda6aba532f862f0 (diff) | |
Add preliminary notifications UX in settings area
Not wired up to any server actions yet.
Diffstat (limited to 'ui/routes')
| -rw-r--r-- | ui/routes/(app)/me/+page.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/routes/(app)/me/+page.svelte b/ui/routes/(app)/me/+page.svelte index 0c960c8..5868398 100644 --- a/ui/routes/(app)/me/+page.svelte +++ b/ui/routes/(app)/me/+page.svelte @@ -1,6 +1,7 @@ <script> import LogOut from '$lib/components/LogOut.svelte'; import Invites from '$lib/components/Invites.svelte'; + import NotificationSettings from '$lib/components/NotificationSettings.svelte'; import ChangePassword from '$lib/components/ChangePassword.svelte'; import { goto } from '$app/navigation'; @@ -31,4 +32,6 @@ <hr /> <Invites {invites} {createInvite} /> <hr /> +<NotificationSettings /> +<hr /> <LogOut {logOut} /> |
