/** * EmptyState Component * * Displays a welcome message for new users with no projects. * Provides call-to-action to create first project. * * @see Issue #53 */ 'use client'; import { Rocket, Bot, Settings } from 'lucide-react'; import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Link } from '@/lib/i18n/routing'; export interface EmptyStateProps { /** User's first name for personalization */ userName?: string; /** Additional CSS classes */ className?: string; } export function EmptyState({ userName = 'there', className }: EmptyStateProps) { return (

Welcome to Syndarix, {userName}!

Get started by creating your first project. Our AI agents will help you turn your ideas into reality.

Set up AI agent types Configure your account
); }