import React from "react"; import { Bot } from "lucide-react"; import { Button } from "@/components/ui/button"; interface WelcomeScreenProps { onCreateNewChat: () => void; } export const WelcomeScreen: React.FC = ({ onCreateNewChat }) => { return (

Welcome to Insight AI

Ask me anything, and I'll do my best to help you

); };