{MENU_CATEGORIES.map(category => (
{category.name}
{category.widgets.map(widget => (
))}
))}
);
}
```
---
## Troubleshooting
### Problem: Widgets vises ikke
**Løsning:**
1. Verificer import paths er korrekte
2. Tjek console for fejl
3. Verificer widget IDs matcher mellem registry og component map
### Problem: Styling ser forkert ud
**Løsning:**
1. Tjek at TailwindCSS er konfigureret korrekt
2. Verificer gradient colors er supporteret
3. Prøv at rebuild CSS: `npm run build:css`
### Problem: TypeScript errors
**Løsning:**
1. Installer types: `npm install -D @types/react`
2. Opdater tsconfig.json med correct paths
3. Restart TypeScript server
### Problem: Icons vises ikke
**Løsning:**
1. Install lucide-react: `npm install lucide-react`
2. Verificer import statements
3. Check bundle size hvis for stor
---
## Customization
### Ændre Farver
Rediger widget filer direkte:
```typescript
// I SEGA.tsx - skift fra purple til blue
className="bg-gradient-to-br from-blue-950 via-blue-950 to-black"
```
### Tilføj Nye Metrics
```typescript
// I MasterControl.tsx
const [customMetric, setCustomMetric] = useState(0);