import React from 'react'; interface CompanyWikiEmptyStateProps { progress?: number; onCompleteOnboarding?: () => void; onInviteEmployees?: () => void; onCopyLink?: () => void; } export const CompanyWikiEmptyState: React.FC = ({ progress = 60, onCompleteOnboarding, onInviteEmployees, onCopyLink }) => { return (
Table of contents
1
Company Overview & Vision
2
Leadership & Organizational Structure
3
Operations & Execution
4
Culture & Team Health
5
Sales, Marketing & Growth
6
Financial Health & Metrics
7
Innovation & Product/Service Strategy
8
Personal Leadership & Risk
{/* Empty State Illustration */}
{/* Placeholder for illustration - would contain the actual empty state SVG */}
Company Wiki Empty State
{/* Progress and Call to Action */}
You're {progress}% Done
Complete your onboarding to unlock your Company Wiki
{/* Progress Bar */}
{/* Action Button */}
); };