"use client"; import { useState } from "react"; import { ArrowUp } from "lucide-react"; import { PiGearSixFill } from "react-icons/pi"; import { TiUserAdd } from "react-icons/ti"; import { Button } from "@/components/ui/button"; import { ChatInterface } from "./chat-interface"; export const AskAi = () => { const [isChatMode, setIsChatMode] = useState(false); return ( <>
{isChatMode ? ( ) : ( <>