import type { Brief } from "@/lib/types"; const FIELDS: { key: keyof Brief; label: string; placeholder: string }[] = [ { key: "brand", label: "Brand", placeholder: "FitFuel" }, { key: "product", label: "Product", placeholder: "High-protein meal replacement shake" }, { key: "audience", label: "Audience", placeholder: "Busy professionals aged 25-40" }, { key: "tone", label: "Tone", placeholder: "Energetic and no-nonsense" }, { key: "goal", label: "Goal", placeholder: "Drive trial purchases" }, ]; export function BriefForm({ brief, onChange, onSubmit, loading, statusText, canSubmit, }: { brief: Brief; onChange: (key: keyof Brief, value: string) => void; onSubmit: () => void; loading: boolean; statusText: string; canSubmit: boolean; }) { return (
); }