Initial release v1.0.0

This commit is contained in:
Kevin O'Neill
2025-12-25 18:58:06 -06:00
commit 021aec7a63
439 changed files with 116588 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { Search as SearchIcon } from "lucide-react";
interface EmptyStateProps {
hasSearched: boolean;
isLoading: boolean;
}
export function EmptyState({ hasSearched, isLoading }: EmptyStateProps) {
// Don't show empty state while loading or if search has been performed
if (isLoading || hasSearched) {
return null;
}
return (
<div className="flex flex-col items-center justify-center py-24 text-center">
<SearchIcon className="w-16 h-16 text-gray-700 mb-4" />
<h3 className="text-xl font-bold text-white mb-2">Search your library</h3>
<p className="text-gray-400">Use the search bar above to find music, artists, and albums</p>
</div>
);
}