import { Bookmark } from 'lucide-react' export default function ProgressTracker({ totalPages, currentPage, bookmarks }) { const progress = ((currentPage + 1) / totalPages) * 100 return (
Page {currentPage + 1} of {totalPages}
{bookmarks.size} bookmarks
) }