diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/components/ServiceCard.svelte | 2 | ||||
| -rw-r--r-- | src/lib/components/Services.svelte | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/src/lib/components/ServiceCard.svelte b/src/lib/components/ServiceCard.svelte index 86cf2ed..43b94e3 100644 --- a/src/lib/components/ServiceCard.svelte +++ b/src/lib/components/ServiceCard.svelte @@ -15,7 +15,7 @@ </div> <div class="divider m-0 p-0"></div> <p>{service.description}</p> - <div class="flex flex-row w-full h-full"> + <div class="flex flex-row flex-wrap w-full h-full"> {#each service.references as reference} <span class="mx-1" ><Link href={reference.url} diff --git a/src/lib/components/Services.svelte b/src/lib/components/Services.svelte index d291599..444bd66 100644 --- a/src/lib/components/Services.svelte +++ b/src/lib/components/Services.svelte @@ -61,6 +61,29 @@ }, ], }, + { + icon: "iconify-[fa7-solid--bell]", + name: "push notifications", + description: + "autopush server, you can use this with Sunup for push notifications using UnifiedPush", + source: + "https://git.toufy.me/servers/tree/adonis/captiveportal/default.nix", + url: "https://push.toufy.me", + references: [ + { + name: "autopush", + url: "https://github.com/mozilla-services/autopush-rs", + }, + { + name: "UnifiedPush", + url: "https://unifiedpush.org", + }, + { + name: "Sunup", + url: "https://codeberg.org/Sunup/android", + }, + ], + }, ]; </script> |
