'use client'
import React from 'react'
import type { StepProps } from '../_types'
import { AI_USE_CATEGORIES } from '../_data'
interface Props extends StepProps {
profileIndustry: string | string[] | undefined
}
export function Step1Basics({ form, updateForm, profileIndustry }: Props) {
return (
Grundlegende Informationen
{/* Branche aus Profil (nur Anzeige) */}
{profileIndustry && (Array.isArray(profileIndustry) ? profileIndustry.length > 0 : true) && (
Branche (aus Unternehmensprofil)
{Array.isArray(profileIndustry) ? profileIndustry.join(', ') : profileIndustry}
)}
updateForm({ title: e.target.value })}
placeholder="z.B. Chatbot fuer Kundenservice"
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent"
/>
{/* KI-Anwendungskategorie als Kacheln */}
Waehlen Sie die passende Kategorie fuer Ihren Anwendungsfall.
{AI_USE_CATEGORIES.map(cat => (
))}
)
}