From 0130052de52a2f2ca986c45f9c7ad4c101602ac1 Mon Sep 17 00:00:00 2001 From: Alan Grainger Date: Thu, 31 Oct 2024 18:24:11 +0100 Subject: [PATCH] chore(docs): Add Immich Public Proxy to the Community Projects list (#13836) Update community-projects.tsx Add Immich Public Proxy to Community Projects --- docs/src/components/community-projects.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/src/components/community-projects.tsx b/docs/src/components/community-projects.tsx index 3a034e3a04..596bf9dfc4 100644 --- a/docs/src/components/community-projects.tsx +++ b/docs/src/components/community-projects.tsx @@ -83,6 +83,12 @@ const projects: CommunityProjectProps[] = [ description: 'Power tools for organizing your immich library.', url: 'https://github.com/varun-raj/immich-power-tools', }, + { + title: 'Immich Public Proxy', + description: + 'Share your Immich photos and albums in a safe way without exposing your Immich instance to the public.', + url: 'https://github.com/alangrainger/immich-public-proxy', + }, ]; function CommunityProject({ title, description, url }: CommunityProjectProps): JSX.Element {