From 27757bb9497d91d4d1bff618089fa210b5f3c7eb Mon Sep 17 00:00:00 2001 From: tonym Date: Wed, 21 Jan 2026 21:17:25 -0600 Subject: [PATCH] Add About section with attribution to Settings page Credits Donkie for original Spoolman and Claude for UX enhancements. Co-Authored-By: Claude Opus 4.5 --- client/src/pages/settings/generalSettings.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/client/src/pages/settings/generalSettings.tsx b/client/src/pages/settings/generalSettings.tsx index b4c1cc1..971dd4b 100644 --- a/client/src/pages/settings/generalSettings.tsx +++ b/client/src/pages/settings/generalSettings.tsx @@ -144,6 +144,10 @@ export function GeneralSettings() { + + + + {contextHolder} ); @@ -447,3 +451,27 @@ function BackupRestore({ messageApi, t }: BackupRestoreProps) { ); } + +function AboutSection() { + return ( +
+

About

+

+ Based on{" "} + + Spoolman + {" "} + by{" "} + + Donkie + +
+ UX enhancements developed with{" "} + + Claude + {" "} + (Anthropic) +

+
+ ); +}