import React from 'react'; interface QAItem { question: string; answer: string; } interface CompanyWikiCompletedStateProps { qaItems?: QAItem[]; activeSection?: number; onSectionClick?: (section: number) => void; onInviteEmployees?: () => void; onCopyLink?: () => void; } const defaultQAItems: QAItem[] = [ { question: "What is the mission of your company?", answer: "To empower small businesses with AI-driven automation tools that increase efficiency and reduce operational overhead." }, { question: "How has your mission evolved in the last 1–3 years?", answer: "We shifted from general SaaS tools to vertical-specific solutions, with deeper integrations and onboarding support." }, { question: "What is your 5-year vision for the company?", answer: "To become the leading AI operations platform for SMBs in North America, serving over 100,000 customers." }, { question: "What are your company's top 3 strategic advantages?", answer: "Fast product iteration enabled by in-house AI capabilities\nDeep customer understanding from vertical specialization\nHigh customer retention due to integrated onboarding" }, { question: "What are your biggest vulnerabilities or threats?", answer: "Dependence on a single marketing channel, weak middle management, and rising customer acquisition costs." } ]; 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 CompanyWikiCompletedState: React.FC = ({ qaItems = defaultQAItems, activeSection = 1, onSectionClick, onInviteEmployees, onCopyLink }) => { return (
{/* Table of Contents */}
Table of contents
{sections.map((section, index) => { const sectionNumber = index + 1; const isActive = sectionNumber === activeSection; return (
onSectionClick?.(sectionNumber)} className={`self-stretch p-2 rounded-[10px] inline-flex justify-start items-center gap-2 overflow-hidden cursor-pointer hover:bg-[--Neutrals-NeutralSlate50] dark:hover:bg-[--Neutrals-NeutralSlate700] ${isActive ? 'bg-[--Neutrals-NeutralSlate100] dark:bg-[--Neutrals-NeutralSlate700] shadow-[0px_1px_2px_0px_rgba(10,13,20,0.03)]' : ''}`} >
{sectionNumber}
{section}
); })}
{/* Main Content */}
{sections[activeSection - 1]}
{qaItems.map((item, index) => (
Q
{item.question}
A
{item.answer}
))} {/* Additional Questions */}
What is the mission of your company?
Our mission is to not only create value but also to foster a collaborative environment where innovation thrives. We aim to empower our team members to contribute their unique skills and perspectives, ensuring that every project we undertake is a reflection of our collective creativity and dedication. By prioritizing both individual growth and teamwork, we strive to build a company culture that values excellence and continuous improvement. Together, we can achieve remarkable results that benefit not just our organization, but also our clients and the community at...
Q
What is the mission of your company?
A
The mission is to create value as well as working
); };