const Saved = () => {
    return (
        <div className="space-y-6">
            <div className="flex justify-between items-center mb-6">
                <div>
                    <h1 className="text-2xl font-bold text-gray-900 dark:text-white">Saved Items</h1>
                    <p className="text-gray-500 dark:text-gray-400">Your collection of saved posts, opportunities, and more.</p>
                </div>
            </div>
            
            <EmptyState 
                icon={<i data-lucide="bookmark" className="w-8 h-8"></i>}
                title="Nothing saved yet"
                description="When you save items across Nexus, they will appear here for easy access."
            />
        </div>
    );
};
