From 16a1bd12c2b23f03facfd9b4f9d152bc952d258f38f53694396061fbb30c1c8b Mon Sep 17 00:00:00 2001 From: Plexi09 Date: Mon, 23 Feb 2026 13:09:08 +0100 Subject: [PATCH] Added opensource notice in settings --- frontend/src/pages/Settings.tsx | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/Settings.tsx b/frontend/src/pages/Settings.tsx index dd5f777..e61a227 100644 --- a/frontend/src/pages/Settings.tsx +++ b/frontend/src/pages/Settings.tsx @@ -1,6 +1,6 @@ import React, { useState } from 'react'; import { useAppContext } from '../store/AppContext'; -import { Sun, Moon, Lock, Trash2, Film, ChevronRight, AlertTriangle } from 'lucide-react'; +import { Sun, Moon, Lock, Trash2, Film, ChevronRight, AlertTriangle, Code, ExternalLink } from 'lucide-react'; const TMDB_GENRES = [ { id: 28, name: 'Action' }, @@ -345,6 +345,28 @@ export const Settings: React.FC = () => { )} + + {/* Open Source */} +
+
+
+ +

Open Source

+
+

+ CineMatch is open source software licensed under CC BY-NC-SA 4.0. Contributions, issues and feedback are welcome! +

+ + + View on Forgejo + +
+
);