import React from 'react'; interface CompanyWikiEmptyStateProps { progress?: number; onCompleteOnboarding?: () => void; onInviteEmployees?: () => void; onCopyLink?: () => void; } const sections = [ "Company Overview & Vision", "Leadership & Organizational Structure", "Operations & Execution", "Culture & Team Health", "Sales, Marketing & Growth", "Financial Health & Metrics", "Innovation & Product/Service Strategy", "Personal Leadership & Risk" ]; export const CompanyWikiEmptyState: React.FC = ({ progress = 60, onCompleteOnboarding, onInviteEmployees, onCopyLink }) => { return (
{/* Table of Contents */}
Table of contents
{sections.map((section, index) => { const sectionNumber = index + 1; const isActive = sectionNumber === 1; // First section is always active in empty state return (
{sectionNumber}
{section}
); })}
{/* Main Content */}
Company Overview & Vision
{/* Progress Illustration Placeholder */}
Progress Illustration
{/* Progress Content */}
You're {progress}% Done
Complete your company onboarding to unlock your company wiki and comprehensive insights about your organization.
{/* Progress Bar */}
{/* Action Button */}
); };