diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-04-05 15:53:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-05 15:53:42 +0100 |
| commit | 16866d8808c09c0cebc9861e04caa78fbcd10215 (patch) | |
| tree | 432a8074b6fd3f48f35318f47f2ab36bfffe1168 /apps/web/components/admin | |
| parent | 55ae6796d837b74b2e61720555512a215dbb687e (diff) | |
| download | karakeep-16866d8808c09c0cebc9861e04caa78fbcd10215.tar.zst | |
chore: Hoarder to Karakeep rebranding (#1199)
* The new logo
* Changing hoarder.app to karakeep.app
* Adding the admin panel warning
* Update the readme
Diffstat (limited to 'apps/web/components/admin')
| -rw-r--r-- | apps/web/components/admin/AdminNotices.tsx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/apps/web/components/admin/AdminNotices.tsx b/apps/web/components/admin/AdminNotices.tsx index 4977736f..45824727 100644 --- a/apps/web/components/admin/AdminNotices.tsx +++ b/apps/web/components/admin/AdminNotices.tsx @@ -27,7 +27,7 @@ function useAdminNotices() { You're using the legacy docker container images. Those will stop getting supported soon. Please follow{" "} <a - href="https://docs.hoarder.app/next/Guides/legacy-container-upgrade" + href="https://docs.karakeep.app/next/Guides/legacy-container-upgrade" className="underline" > this guide @@ -38,6 +38,23 @@ function useAdminNotices() { title: "Legacy Container Images", }); } + ret.push({ + level: "warning", + message: ( + <p> + You'll need to update your docker images to the new image otherwise + you won't be getting new updates. Please follow{" "} + <a + href="https://docs.karakeep.app/next/Guides/hoarder-to-karakeep-migration" + className="underline" + > + this guide + </a>{" "} + for instructions on how to update your docker images. + </p> + ), + title: "Hoarder is rebranding to Karakeep", + }); return ret; } |
