From 8e24663363f084a77ee2ba33c842297f82310a15 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Fri, 16 Jan 2026 15:03:15 +0000 Subject: [PATCH] Generated by Spark: So favicon designer is missing from features page, are we missing some database migration? --- src/components/FeatureToggleSettings.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/FeatureToggleSettings.tsx b/src/components/FeatureToggleSettings.tsx index 4d3c2e1..dd41b4f 100644 --- a/src/components/FeatureToggleSettings.tsx +++ b/src/components/FeatureToggleSettings.tsx @@ -2,7 +2,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com import { Label } from '@/components/ui/label' import { Switch } from '@/components/ui/switch' import { FeatureToggles } from '@/types/project' -import { Code, Database, Tree, PaintBrush, Flask, Play, BookOpen, Cube, Wrench, FileText, FlowArrow } from '@phosphor-icons/react' +import { Code, Database, Tree, PaintBrush, Flask, Play, BookOpen, Cube, Wrench, FileText, FlowArrow, Image, Lightbulb } from '@phosphor-icons/react' import { ScrollArea } from '@/components/ui/scroll-area' interface FeatureToggleSettingsProps { @@ -95,6 +95,18 @@ const featuresList = [ description: 'Custom Sass/SCSS styling showcase', icon: PaintBrush }, + { + key: 'faviconDesigner' as keyof FeatureToggles, + label: 'Favicon Designer', + description: 'Design and generate app favicons and icons', + icon: Image + }, + { + key: 'ideaCloud' as keyof FeatureToggles, + label: 'Feature Idea Cloud', + description: 'Brainstorm and organize feature ideas', + icon: Lightbulb + }, ] export function FeatureToggleSettings({ features, onFeaturesChange }: FeatureToggleSettingsProps) {