From b02707ac7f410103b55c5e6d9007df3d927534e5 Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Fri, 5 Jun 2026 19:37:54 +0530 Subject: [PATCH] feat(renderer): PluginsSettings tab placeholder (Coming soon) --- src/renderer/components/modals/PluginsSettings.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/renderer/components/modals/PluginsSettings.tsx diff --git a/src/renderer/components/modals/PluginsSettings.tsx b/src/renderer/components/modals/PluginsSettings.tsx new file mode 100644 index 0000000..edc0b85 --- /dev/null +++ b/src/renderer/components/modals/PluginsSettings.tsx @@ -0,0 +1,14 @@ +import { Sparkles } from 'lucide-react'; + +export function PluginsSettings() { + return ( +
+ +

Coming soon

+

+ The plugin system is on the roadmap. You'll be able to extend MarkdownConverter with custom + commands, themes, and export formats. +

+
+ ); +}