'use client'; /** * Command Input * * Bottom input bar for text and voice commands. */ import { useSwiftStore } from '@/stores/swift-store'; import { Mic } from 'lucide-react'; export function CommandInput() { const { inputValue, setInputValue, isVoiceActive, setVoiceActive } = useSwiftStore(); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // TODO: Process intent (E2) console.log('Submit:', inputValue); }; return ( ); }