'use client'; import { AILogo } from '@/components/ui/AILogo'; import { cn } from '@/lib/utils'; interface WelcomeProps { greeting: string; className?: string; } export function Welcome({ greeting, className }: WelcomeProps) { return (
{/* 装饰图标 */}
{/* 问候语 */}

{greeting}

); }