const CampaignTracker = ({ handleMenuClick }: { handleMenuClick: () => void }) => { const progressSections = [ { title: "Social", current: 42, total: 80, color: "bg-blue-500", bgColor: "bg-blue-100", icons: [ { name: "Pinterest", color: "bg-red-600", text: "P", textColor: "text-white" }, { name: "Amazon", color: "bg-black", text: "a", textColor: "text-white" }, { name: "PayPal", color: "bg-blue-600", text: "P", textColor: "text-white" }, { name: "Yelp", color: "bg-red-600", text: "★", textColor: "text-white" }, { name: "Uber", color: "bg-black", text: "uber", textColor: "text-white", fontSize: "text-xs" }, ], }, { title: "Citation", current: 30, total: 80, color: "bg-blue-500", bgColor: "bg-blue-100", icons: [ { name: "Service", color: "bg-blue-400", text: "◐", textColor: "text-white" }, { name: "Package", color: "bg-yellow-400", text: "📦", textColor: "text-white" }, { name: "Directory", color: "bg-blue-600", text: "◐", textColor: "text-white" }, { name: "Yelp", color: "bg-red-600", text: "★", textColor: "text-white" }, { name: "Pinterest", color: "bg-red-600", text: "P", textColor: "text-white" }, ], }, { title: "Web 2.0", current: 15, total: 70, color: "bg-green-500", bgColor: "bg-green-100", icons: [ { name: "Directory", color: "bg-blue-600", text: "◐", textColor: "text-white" }, { name: "Fox", color: "bg-red-600", text: "FOX", textColor: "text-white", fontSize: "text-xs" }, { name: "Package", color: "bg-yellow-400", text: "📦", textColor: "text-white" }, { name: "Service", color: "bg-green-600", text: "≡", textColor: "text-white" }, { name: "Platform", color: "bg-red-600", text: "⬜", textColor: "text-white" }, ], }, { title: "Multimedia", current: 5, total: 15, color: "bg-yellow-500", bgColor: "bg-yellow-100", icons: [ { name: "Package", color: "bg-yellow-400", text: "📦", textColor: "text-white" }, { name: "Service", color: "bg-green-600", text: "≡", textColor: "text-white" }, { name: "Directory", color: "bg-blue-600", text: "◐", textColor: "text-white" }, { name: "Uber", color: "bg-black", text: "uber", textColor: "text-white", fontSize: "text-xs" }, { name: "Amazon", color: "bg-black", text: "a", textColor: "text-white" }, ], }, { title: "Crowd", current: 5, total: 15, color: "bg-red-500", bgColor: "bg-red-100", icons: [ { name: "Directory", color: "bg-blue-600", text: "◐", textColor: "text-white" }, { name: "PayPal", color: "bg-blue-600", text: "P", textColor: "text-white" }, { name: "Package", color: "bg-yellow-400", text: "📦", textColor: "text-white" }, { name: "Service", color: "bg-green-600", text: "≡", textColor: "text-white" }, { name: "Platform", color: "bg-red-600", text: "⬜", textColor: "text-white" }, ], }, ] return (
{/* Status Cards */}
Indexed:
77%
Interlinked:
5%
Publishing:
Locked
{/* Progress Sections */}
{progressSections.map((section, index) => { const progressPercentage = (section.current / section.total) * 100 return (
{/* Section Title and Progress */}

{section.title}: {section.current}/{section.total}

{section.icons.map((icon, iconIndex) => (
{icon.text}
))}
{/* Progress Bar */}
) })}
) } export default CampaignTracker