interface CompanyOverviewProps { data: { title: string; description: string; mission: { title: string; content: string; }; vision: { title: string; content: string; }; values: { title: string; items: Array<{ name: string; description: string; }>; }; }; } export default function CompanyOverview({ data }: CompanyOverviewProps) { const getValueIcon = (index: number) => { const icons = ['💡', '🎯', '🤝', '🌟']; return icons[index] || '⭐'; }; return (

{data.title}

{data.description}

{/* Mission & Vision */}
🎯

{data.mission.title}

{data.mission.content}

🚀

{data.vision.title}

{data.vision.content}

{/* Core Values */}

{data.values.title}

{data.values.items.map((value, index) => (
{getValueIcon(index)}

{value.name}

{value.description}

))}
); }