diff options
| author | toufic ar <contact@toufy.me> | 2026-07-19 18:44:31 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-07-19 18:44:31 +0300 |
| commit | a18537bf9cef30451ad529ffa80400da48a79c41 (patch) | |
| tree | 225d56213b03f1061b65ea03d3a69178d2d64098 /src | |
| parent | dbf8f809c9a4eb36bc37084eeaa5bd0a1b4550f6 (diff) | |
| download | website-a18537bf9cef30451ad529ffa80400da48a79c41.tar.gz website-a18537bf9cef30451ad529ffa80400da48a79c41.zip | |
add autopush entry, wrap card URL references
Diffstat (limited to 'src')
| -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> |
