import React from 'react';
import {
Brain,
FileText,
Search,
MessageCircle,
ArrowRight
} from 'lucide-react';
export const EmptyState: React.FC = () => {
const features = [
{
icon: ,
title: 'Upload Documents',
description: 'Drag and drop PDF files to add them to your knowledge base',
},
{
icon: ,
title: 'Smart Search',
description: 'Ask questions and get answers from your documents and the web',
},
{
icon: ,
title: 'AI Powered',
description: 'Powered by Groq LLM for fast, accurate responses',
},
{
icon: ,
title: 'Source Citations',
description: 'Every answer includes sources so you can verify the information',
},
];
return (
Welcome to RAG System
Upload documents and ask questions to get AI-powered answers with source citations.
{features.map((feature, index) => (
{feature.title}
{feature.description}
))}
Start by uploading a document
);
};