'use client' import type { FoundingWizardState } from '@/lib/sdk/founding/types' interface Props { state: FoundingWizardState update: (k: K, v: FoundingWizardState[K]) => void } export function StepBasics({ state, update }: Props) { const b = state.basics return (
update('basics', { ...b, company_name: e.target.value })} placeholder="Breakpilot GmbH" className="w-full px-3 py-2 border rounded-lg" />
update('basics', { ...b, company_seat: e.target.value })} placeholder="z.B. Stuttgart" className="w-full px-3 py-2 border rounded-lg" />
update('basics', { ...b, company_address: e.target.value })} placeholder="Straße, PLZ Ort" className="w-full px-3 py-2 border rounded-lg" />
update('basics', { ...b, industry: e.target.value })} placeholder="z.B. SaaS, Beratung, Handwerk" className="w-full px-3 py-2 border rounded-lg" />
update('basics', { ...b, business_year: e.target.value })} className="w-full px-3 py-2 border rounded-lg" />