Components
Loading preview...
"use client";
import AIInput from './components/ui/ai-input';
export default function Home() {
const handleAISubmit = (message: string, model: string, thinkingMode: boolean, files: File[]) => {
console.log('AI Input Submitted:', { message, model, thinkingMode, files });
// Here you would typically send the data to your AI service
};
return (
<div className="min-h-screen bg-neutral-950 px-4 flex items-center justify-center">
<div className="w-full max-w-4xl">
<AIInput onSubmit={handleAISubmit} />
</div>
</div>
);
}