AI Component Templates

2 AI-focused components

AI Component Templates (2)

Build AI-powered interfaces with these components.

Available Templates

TemplateType
AI Chat InputChat interface
AI Code GeneratorCode generation

AI Chat Input Features

  • Message input with send button
  • Chat history display
  • Typing indicators
  • Code block rendering
  • Markdown support

Usage

import AIChatInput from "@/components/AI/AIChatInput";

export default function ChatPage() {
  const handleSend = async (message) => {
    // Send to your AI API
  };
  
  return <AIChatInput onSend={handleSend} />;
}