diff --git a/docs/docs/community-guides.mdx b/docs/docs/community-guides.mdx
deleted file mode 100644
index 505ec93e77..0000000000
--- a/docs/docs/community-guides.mdx
+++ /dev/null
@@ -1,12 +0,0 @@
-# Community Guides
-
-This page lists community guides that are written around Immich, but not officially supported by the development team.
-
-:::warning
-This list comes with no guarantees about security, performance, reliability, or accuracy. Use at your own risk.
-:::
-
-import CommunityGuides from '../src/components/community-guides.tsx';
-import React from 'react';
-
-
diff --git a/docs/docs/community-projects.mdx b/docs/docs/community-projects.mdx
deleted file mode 100644
index eb41090cd6..0000000000
--- a/docs/docs/community-projects.mdx
+++ /dev/null
@@ -1,12 +0,0 @@
-# Community Projects
-
-This page lists community projects that are built around Immich, but not officially supported by the development team.
-
-:::warning
-This list comes with no guarantees about security, performance, reliability, or accuracy. Use at your own risk.
-:::
-
-import CommunityProjects from '../src/components/community-projects.tsx';
-import React from 'react';
-
-
diff --git a/docs/docs/features/mobile-app.mdx b/docs/docs/features/mobile-app.mdx
index 82a2976b41..2d34507a26 100644
--- a/docs/docs/features/mobile-app.mdx
+++ b/docs/docs/features/mobile-app.mdx
@@ -3,7 +3,6 @@ import { mdiCloudOffOutline, mdiCloudCheckOutline } from '@mdi/js';
import MobileAppDownload from '/docs/partials/_mobile-app-download.md';
import MobileAppLogin from '/docs/partials/_mobile-app-login.md';
import MobileAppBackup from '/docs/partials/_mobile-app-backup.md';
-import { cloudDonePath, cloudOffPath } from '@site/src/components/svg-paths';
# Mobile App
diff --git a/docs/src/components/community-guides.tsx b/docs/src/components/community-guides.tsx
deleted file mode 100644
index 08c8e096d9..0000000000
--- a/docs/src/components/community-guides.tsx
+++ /dev/null
@@ -1,108 +0,0 @@
-import Link from '@docusaurus/Link';
-import React from 'react';
-
-interface CommunityGuidesProps {
- title: string;
- description: string;
- url: string;
-}
-
-const guides: CommunityGuidesProps[] = [
- {
- title: 'Cloudflare Tunnels with SSO/OAuth',
- description: `Setting up Cloudflare Tunnels and a SaaS App for Immich.`,
- url: 'https://github.com/immich-app/immich/discussions/8299',
- },
- {
- title: 'Database backup in TrueNAS',
- description: `Create a database backup with pgAdmin in TrueNAS.`,
- url: 'https://github.com/immich-app/immich/discussions/8809',
- },
- {
- title: 'Unraid backup scripts',
- description: `Back up your assets in Unraid with a pre-prepared script.`,
- url: 'https://github.com/immich-app/immich/discussions/8416',
- },
- {
- title: 'Sync folders with albums',
- description: `synchronize folders in imported library with albums having the folders name.`,
- url: 'https://github.com/immich-app/immich/discussions/3382',
- },
- {
- title: 'Immich Podman Quadlets Handbook',
- description:
- 'A rewrite of the original Immich Docker Compose file using Podman Quadlets, with a set of extra guides in the repository’s wiki.',
- url: 'https://github.com/linux-universe/immich-podman-quadlets/blob/main/README.md',
- },
- {
- title: 'Podman/Quadlets Install',
- description: 'Documentation for simple podman setup using quadlets.',
- url: 'https://github.com/tbelway/immich-podman-quadlets/blob/main/docs/install/podman-quadlet.md',
- },
- {
- title: 'Google Photos import + albums',
- description: 'Import your Google Photos files into Immich and add your albums.',
- url: 'https://github.com/immich-app/immich/discussions/1340',
- },
- {
- title: 'Access Immich with custom domain',
- description: 'Access your local Immich installation over the internet using your own domain.',
- url: 'https://github.com/ppr88/immich-guides/blob/main/open-immich-custom-domain.md',
- },
- {
- title: 'Nginx caching map server',
- description: 'Increase privacy by using nginx as a caching proxy in front of a map tile server.',
- url: 'https://github.com/pcouy/pcouy.github.io/blob/main/_posts/2024-08-30-proxying-a-map-tile-server-for-increased-privacy.md',
- },
- {
- title: 'fail2ban setup instructions',
- 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',
- },
- {
- title: 'Trust Self Signed Certificates with Immich - OAuth Setup',
- description:
- 'Set up Certificate Authority trust with Immich, and your private OAuth2/OpenID service, while using a private CA for HTTPS commication.',
- url: 'https://github.com/immich-app/immich/discussions/18614',
- },
-];
-
-function CommunityGuide({ title, description, url }: CommunityGuidesProps): JSX.Element {
- return (
-
-