Generated by Spark: So favicon designer is missing from features page, are we missing some database migration?

This commit is contained in:
2026-01-16 15:03:15 +00:00
committed by GitHub
parent 31ab058558
commit 8e24663363

View File

@@ -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) {