/** * @fileoverview Simple integration example */ "use client"; import React from "react"; import { ChatbotProvider, ChatbotWidget } from "../index"; /** * Simplest possible chatbot integration */ export function SimpleChatExample() { return ( My App This is a simple app with a chatbot widget. {/* The chatbot widget with minimal configuration */} ); } /** * Example with basic styling */ export function StyledChatExample() { return ( Welcome to My Application This application includes an AI-powered chatbot to help answer your questions. Click the chat button in the bottom-right corner to get started. ); }
This is a simple app with a chatbot widget.
This application includes an AI-powered chatbot to help answer your questions. Click the chat button in the bottom-right corner to get started.