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