import { Card, CardContent } from '@/components/ui/card'; import { ArrowRight, X } from 'lucide-react'; import { useTranslation } from 'react-i18next'; function BannerCard() { return ( System
Setting up your LLM
); } export function Banner() { return (
Welcome to RAGFlow
); } export function NextBanner() { const { t } = useTranslation(); return (
{t('header.welcome')} RAGFlow
); }