'use client' interface WizardBannerProps { module: string title: string description?: string } export function WizardBanner({ module, title, description }: WizardBannerProps) { return (
🎓

Lern-Wizard: {title}

{description || 'Interaktives Onboarding mit Tests und Architektur-Erklaerungen'}

Wizard starten →
) }