import { motion } from 'framer-motion'; import { PartyPopper, RotateCcw, Download } from 'lucide-react'; import { Button } from '@/components/ui/button'; import type { DistroCard } from '@/data/distros'; interface EndOfDeckProps { likedCards: DistroCard[]; onReset: () => void; } export default function EndOfDeck({ likedCards, onReset }: EndOfDeckProps) { return (

Öneriler Hazır!

{likedCards.length > 0 ? `${likedCards.length} dağıtım beğendin` : 'Hiçbir dağıtım beğenmedin'}

{likedCards.length > 0 && (
{likedCards.map((card) => ( {card.distroName}

{card.distroName}

{card.desktopEnvironment}

))}
)}
{likedCards.length > 0 && ( )}
); }