From ae61ea7984ed67c87feafdd7caf1b1e9f9730bed Mon Sep 17 00:00:00 2001
From: RoseyWasTaken <rosey@inchocolate.pl>
Date: Tue, 25 Feb 2025 17:52:07 +0200
Subject: [PATCH] Update community-guides.tsx (#16316)

* Update community-guides.tsx

Added an additional card linking to a remote access guide

* Update docs/src/components/community-guides.tsx

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
---
 docs/src/components/community-guides.tsx | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/src/components/community-guides.tsx b/docs/src/components/community-guides.tsx
index 17fe562317..f5331a9163 100644
--- a/docs/src/components/community-guides.tsx
+++ b/docs/src/components/community-guides.tsx
@@ -53,6 +53,11 @@ const guides: CommunityGuidesProps[] = [
     description: 'How to configure an existing fail2ban installation to block incorrect login attempts.',
     url: 'https://github.com/immich-app/immich/discussions/3243#discussioncomment-6681948',
   },
+  {
+    title: 'Immich remote access with NordVPN Meshnet',
+    description: 'Access Immich with an end-to-end encrypted connection.',
+    url: 'https://meshnet.nordvpn.com/how-to/remote-files-media-access/immich-remote-access',
+  },
 ];
 
 function CommunityGuide({ title, description, url }: CommunityGuidesProps): JSX.Element {