blog related changes

This commit is contained in:
priyanshuvish
2025-10-09 17:47:44 +05:30
parent b5a8f0f9c3
commit dc072361f8
5 changed files with 603 additions and 497 deletions

View File

@@ -24,136 +24,7 @@ import {
ChevronRight,
X
} from 'lucide-react';
// Mock articles data
const articles = [
{
id: '1',
slug: 'future-of-leadership-development',
title: 'The Future of Leadership Development: Trends and Innovations',
excerpt: 'Explore emerging trends in leadership development and how organizations are adapting to create more effective leaders for tomorrow\'s challenges.',
content: 'Leadership development is evolving rapidly in response to changing workplace dynamics, technological advances, and new generations entering the workforce...',
author: 'Sarah Johnson',
authorTitle: 'Senior Leadership Consultant',
authorAvatar: 'https://images.unsplash.com/photo-1494790108755-2616b612b47c?w=150&h=150&fit=crop&crop=face',
date: '2024-02-20',
readTime: '8 min read',
category: 'Leadership Development',
tags: ['Future of Work', 'Leadership Trends', 'Innovation', 'Strategy'],
thumbnail: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop',
featured: true,
views: '2.4k',
likes: 45
},
{
id: '2',
slug: 'emotional-intelligence-in-leadership',
title: 'Emotional Intelligence: The Key to Effective Leadership',
excerpt: 'Discover how emotional intelligence impacts leadership effectiveness and learn practical strategies to develop your EQ.',
content: 'Emotional intelligence has become increasingly recognized as a critical factor in leadership success...',
author: 'Dr. Michael Chen',
authorTitle: 'Executive Coach',
authorAvatar: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop&crop=face',
date: '2024-02-18',
readTime: '6 min read',
category: 'Personal Development',
tags: ['Emotional Intelligence', 'Leadership Skills', 'Communication', 'Self-Awareness'],
thumbnail: 'https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=600&h=400&fit=crop',
featured: true,
views: '1.8k',
likes: 32
},
{
id: '3',
slug: 'building-high-performing-teams',
title: 'Building High-Performing Teams: A Leader\'s Guide',
excerpt: 'Learn the essential strategies for creating and maintaining high-performing teams that deliver exceptional results.',
content: 'High-performing teams don\'t happen by accident. They require intentional leadership, clear purpose, and the right environment...',
author: 'Lisa Rodriguez',
authorTitle: 'Team Development Specialist',
authorAvatar: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face',
date: '2024-02-15',
readTime: '10 min read',
category: 'Team Development',
tags: ['Team Building', 'Performance', 'Collaboration', 'Leadership'],
thumbnail: 'https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=600&h=400&fit=crop',
featured: false,
views: '3.1k',
likes: 58
},
{
id: '4',
slug: 'digital-transformation-leadership',
title: 'Leading Digital Transformation: A Strategic Approach',
excerpt: 'Navigate the complexities of digital transformation with proven leadership strategies and best practices.',
content: 'Digital transformation is reshaping industries and organizations worldwide. Successful transformation requires strong leadership...',
author: 'David Park',
authorTitle: 'Digital Strategy Consultant',
authorAvatar: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face',
date: '2024-02-12',
readTime: '12 min read',
category: 'Digital Transformation',
tags: ['Digital Strategy', 'Change Management', 'Technology', 'Innovation'],
thumbnail: 'https://images.unsplash.com/photo-1560472355-536de3962603?w=600&h=400&fit=crop',
featured: false,
views: '2.7k',
likes: 41
},
{
id: '5',
slug: 'crisis-leadership-strategies',
title: 'Crisis Leadership: Navigating Uncertainty with Confidence',
excerpt: 'Master the art of crisis leadership and learn how to guide your organization through challenging times.',
content: 'Crisis situations test the mettle of leaders and reveal the true strength of an organization...',
author: 'Jennifer Adams',
authorTitle: 'Crisis Management Expert',
authorAvatar: 'https://images.unsplash.com/photo-1580489944761-15a19d654956?w=150&h=150&fit=crop&crop=face',
date: '2024-02-10',
readTime: '9 min read',
category: 'Crisis Management',
tags: ['Crisis Leadership', 'Risk Management', 'Decision Making', 'Communication'],
thumbnail: 'https://images.unsplash.com/photo-1584697964358-3e14ca57658b?w=600&h=400&fit=crop',
featured: false,
views: '1.9k',
likes: 35
},
{
id: '6',
slug: 'sustainable-leadership-practices',
title: 'Sustainable Leadership: Building for the Long Term',
excerpt: 'Explore sustainable leadership practices that create lasting value for organizations and stakeholders.',
content: 'Sustainable leadership goes beyond short-term gains to create lasting value for all stakeholders...',
author: 'Robert Kim',
authorTitle: 'Sustainability Consultant',
authorAvatar: 'https://images.unsplash.com/photo-1560250097-0b93528c311a?w=150&h=150&fit=crop&crop=face',
date: '2024-02-08',
readTime: '7 min read',
category: 'Strategy',
tags: ['Sustainability', 'ESG', 'Long-term Thinking', 'Stakeholder Value'],
thumbnail: 'https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=600&h=400&fit=crop',
featured: false,
views: '1.5k',
likes: 28
},
{
id: '7',
slug: 'strategic-thinking-frameworks',
title: 'Strategic Thinking Frameworks for Modern Leaders',
excerpt: 'Master strategic thinking with proven frameworks that help leaders anticipate challenges and seize opportunities.',
content: 'Strategic thinking is a critical skill for leaders navigating complex business environments...',
author: 'Dr. Amanda Foster',
authorTitle: 'Strategic Leadership Coach',
authorAvatar: 'https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?w=150&h=150&fit=crop&crop=face',
date: '2024-02-05',
readTime: '11 min read',
category: 'Strategy',
tags: ['Strategic Thinking', 'Frameworks', 'Decision Making', 'Planning'],
thumbnail: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop',
featured: false,
views: '2.1k',
likes: 39
},
];
import { articlesData } from '../data/articlesData';
export function Articles() {
const [searchTerm, setSearchTerm] = useState('');
@@ -168,13 +39,15 @@ export function Articles() {
const articlesPerPage = 4;
const containerRef = useRef<HTMLDivElement>(null);
// Use articlesData instead of the old articles variable
const articles = articlesData;
// Get unique values for filters
const categories = ['All Categories', ...Array.from(new Set(articles.map(article => article.category)))];
const authors = ['All Authors', ...Array.from(new Set(articles.map(article => article.author)))];
// Get unique values for filters - FIXED: using articlesData
const categories = ['All Categories', ...Array.from(new Set(articlesData.map(article => article.category)))];
const authors = ['All Authors', ...Array.from(new Set(articlesData.map(article => article.author)))];
const readTimes = ['All Read Times', 'Under 5 min', '5-10 min', 'Over 10 min'];
const dateRanges = ['All Time', 'Last 7 days', 'Last 30 days', 'Last 3 months'];
const allTags = Array.from(new Set(articles.flatMap(article => article.tags)));
const allTags = Array.from(new Set(articlesData.flatMap(article => article.tags)));
const sortOptions = [
{ value: 'Most Recent', label: 'Most Recent' },
{ value: 'oldest', label: 'Oldest First' },
@@ -183,8 +56,8 @@ export function Articles() {
{ value: 'popular', label: 'Most Popular' }
];
// Filter and sort articles
const filteredArticles = articles.filter(article => {
// Filter and sort articles - FIXED: using articlesData
const filteredArticles = articlesData.filter(article => {
const matchesSearch = article.title.toLowerCase().includes(searchTerm.toLowerCase()) ||
article.excerpt.toLowerCase().includes(searchTerm.toLowerCase()) ||
article.author.toLowerCase().includes(searchTerm.toLowerCase()) ||
@@ -253,8 +126,6 @@ export function Articles() {
setSortBy('Most Recent');
};
const hasActiveFilters = searchTerm ||
selectedCategory !== 'All Categories' ||
selectedAuthor !== 'All Authors' ||
@@ -298,10 +169,12 @@ export function Articles() {
<div className="section-margin-x">
<div className="grid grid-cols-3 gap-8 text-center">
<div>
<div className="text-h2-white mb-2">{articles.length}+</div>
{/* FIXED: Using articlesData.length */}
<div className="text-h2-white mb-2">{articlesData.length}+</div>
<div className="text-small-white">Expert Articles</div>
</div>
<div>
{/* FIXED: Using categories from articlesData */}
<div className="text-h2-white mb-2">{categories.length - 1}</div>
<div className="text-small-white">Categories</div>
</div>
@@ -540,7 +413,7 @@ export function Articles() {
<>
{/* Grid View */}
{viewMode === 'grid' && (
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
{currentArticles.map((article) => (
<Card
key={article.id}
@@ -676,7 +549,7 @@ export function Articles() {
{/* Pagination */}
{totalPages > 1 && (
<div className="flex items-center justify-center gap-2">
<div className="flex items-center justify-center gap-2 mt-8">
<Button
variant="outline"
size="sm"

View File

@@ -7,6 +7,9 @@ import { navigateTo } from './Router';
import { ImageWithFallback } from './figma/ImageWithFallback';
import { CTABannerSection } from './CTABannerSection';
import { useCart } from './CartContext';
// CRITICAL: Import articlesData from the centralized data file
// DO NOT create a local articlesData variable - it will shadow this import
// All article data must be maintained in /data/articlesData.ts
import {
Calendar,
Clock,
@@ -28,6 +31,8 @@ import {
TrendingUp,
Award
} from 'lucide-react';
import { articlesData } from '../data/articlesData';
import { useParams } from 'react-router-dom';
interface BlogPost {
id: string;
@@ -67,281 +72,34 @@ interface BlogDetailProps {
};
}
// Articles data synced with Articles component for consistency
const articlesData = [
{
id: 1,
title: "The Future of Leadership Development: Trends and Innovations",
slug: "future-of-leadership-development",
excerpt: "Explore emerging trends in leadership development and how organizations are adapting to create more effective leaders for tomorrow's challenges.",
content: `
<p>Leadership development is evolving rapidly in response to changing workplace dynamics, technological advances, and new generations entering the workforce. Organizations worldwide are reimagining their approach to cultivating leadership talent.</p>
<h2>Emerging Trends in Leadership Development</h2>
<p>Several key trends are reshaping how we develop leaders:</p>
<ul>
<li><strong>Personalized Learning Paths:</strong> Customized development programs based on individual strengths, weaknesses, and career aspirations.</li>
<li><strong>Digital-First Delivery:</strong> Virtual reality simulations, AI-powered coaching, and mobile learning platforms.</li>
<li><strong>Continuous Feedback Culture:</strong> Real-time performance insights and ongoing mentorship relationships.</li>
<li><strong>Cross-Functional Exposure:</strong> Leaders developing broader business acumen through diverse role experiences.</li>
</ul>
<h2>Innovation in Leadership Development</h2>
<p>Organizations are experimenting with new methodologies and technologies to create more effective development experiences.</p>
<blockquote>
<p>"The future of leadership development lies in creating adaptive, resilient leaders who can thrive in uncertainty while driving innovation and human connection."</p>
<cite>— Sarah Johnson, Senior Leadership Consultant</cite>
</blockquote>
<h3>Technology-Enhanced Learning</h3>
<p>From virtual reality leadership scenarios to AI-powered coaching platforms, technology is creating immersive development experiences that accelerate learning and skill application.</p>
<p>The future belongs to leaders who embrace continuous learning, demonstrate emotional intelligence, and can navigate complexity with confidence and clarity.</p>
`,
author: "Sarah Johnson",
authorTitle: "Senior Leadership Consultant",
authorBio: "Sarah Johnson is a Senior Leadership Consultant with over 15 years of experience in organizational development and talent management. She specializes in designing innovative leadership programs for Fortune 500 companies.",
authorImage: "https://images.unsplash.com/photo-1494790108755-2616b612b47c?w=150&h=150&fit=crop",
publishedDate: "2024-02-20",
readTime: "8 min read",
category: "Leadership Development",
tags: ["Future of Work", "Leadership Trends", "Innovation", "Strategy"],
image: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop",
featured: true,
views: 2400,
likes: 45
},
{
id: 2,
title: "Emotional Intelligence: The Key to Effective Leadership",
slug: "emotional-intelligence-in-leadership",
excerpt: "Discover how emotional intelligence impacts leadership effectiveness and learn practical strategies to develop your EQ.",
content: `
<p>Emotional intelligence has become increasingly recognized as a critical factor in leadership success. Research consistently shows that leaders with high emotional intelligence create more engaged teams, drive better business results, and build more resilient organizations.</p>
<h2>The Four Domains of Emotional Intelligence</h2>
<p>Daniel Goleman's framework identifies four key domains:</p>
<ul>
<li><strong>Self-Awareness:</strong> Understanding your emotions, strengths, and limitations.</li>
<li><strong>Self-Management:</strong> Effectively managing your emotions and behaviors.</li>
<li><strong>Social Awareness:</strong> Reading others' emotions and understanding group dynamics.</li>
<li><strong>Relationship Management:</strong> Influencing and managing relationships effectively.</li>
</ul>
<blockquote>
<p>"IQ gets you hired, but EQ gets you promoted. In leadership roles, emotional intelligence becomes the differentiator between good managers and great leaders."</p>
<cite>— Dr. Michael Chen, Executive Coach</cite>
</blockquote>
<h2>Developing Your Emotional Intelligence</h2>
<p>Unlike IQ, emotional intelligence can be developed throughout your career through deliberate practice, feedback, and reflection.</p>
<h3>Practical Strategies</h3>
<p>Start with mindfulness practices, seek feedback from trusted colleagues, and practice active listening in all your interactions. The investment in developing emotional intelligence pays dividends in leadership effectiveness.</p>
`,
author: "Dr. Michael Chen",
authorTitle: "Executive Coach",
authorBio: "Dr. Michael Chen is an Executive Coach and organizational psychologist with expertise in emotional intelligence and leadership development. He has coached hundreds of senior executives across various industries.",
authorImage: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop",
publishedDate: "2024-02-18",
readTime: "6 min read",
category: "Personal Development",
tags: ["Emotional Intelligence", "Leadership Skills", "Communication", "Self-Awareness"],
image: "https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1200&h=600&fit=crop",
featured: true,
views: 1800,
likes: 32
},
{
id: 3,
title: "Building High-Performing Teams: A Leader's Guide",
slug: "building-high-performing-teams",
excerpt: "Learn the essential strategies for creating and maintaining high-performing teams that deliver exceptional results.",
content: `
<p>High-performing teams don't happen by accident. They require intentional leadership, clear purpose, and the right environment to thrive. Understanding the key elements that drive team performance is essential for any leader.</p>
<h2>Characteristics of High-Performing Teams</h2>
<p>Research identifies several common traits among exceptional teams:</p>
<ul>
<li><strong>Shared Purpose:</strong> Clear understanding of goals and how individual contributions matter.</li>
<li><strong>Psychological Safety:</strong> Environment where team members feel safe to take risks and share ideas.</li>
<li><strong>Diverse Perspectives:</strong> Variety of backgrounds, skills, and thinking styles.</li>
<li><strong>Effective Communication:</strong> Open, honest, and constructive dialogue.</li>
</ul>
<h2>Building Team Performance</h2>
<p>Creating high-performing teams requires deliberate effort in team formation, skill development, and culture building.</p>
<blockquote>
<p>"Great teams are not created by chance. They are the result of intentional leadership that focuses on both individual development and collective excellence."</p>
<cite>— Lisa Rodriguez, Team Development Specialist</cite>
</blockquote>
<p>The journey to high performance requires patience, consistency, and a commitment to continuous improvement at both individual and team levels.</p>
`,
author: "Lisa Rodriguez",
authorTitle: "Team Development Specialist",
authorBio: "Lisa Rodriguez is a Team Development Specialist with over 12 years of experience helping organizations build high-performing teams. She specializes in team dynamics, collaboration, and performance optimization.",
authorImage: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop",
publishedDate: "2024-02-15",
readTime: "10 min read",
category: "Team Development",
tags: ["Team Building", "Performance", "Collaboration", "Leadership"],
image: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&h=600&fit=crop",
featured: false,
views: 3100,
likes: 58
},
{
id: 4,
title: "Leading Digital Transformation: A Strategic Approach",
slug: "digital-transformation-leadership",
excerpt: "Navigate the complexities of digital transformation with proven leadership strategies and best practices.",
content: `
<p>Digital transformation is reshaping industries and organizations worldwide. Successful transformation requires strong leadership that can balance technological innovation with human-centered change management.</p>
<h2>The Leadership Challenge</h2>
<p>Digital transformation is as much about people and culture as it is about technology. Leaders must navigate resistance, build new capabilities, and maintain business performance during the transition.</p>
<h3>Key Success Factors</h3>
<ul>
<li><strong>Vision Clarity:</strong> Articulating a compelling future state that motivates change.</li>
<li><strong>Change Management:</strong> Supporting people through the transformation journey.</li>
<li><strong>Technology Integration:</strong> Selecting and implementing the right solutions.</li>
<li><strong>Cultural Evolution:</strong> Building a culture that embraces digital innovation.</li>
</ul>
<blockquote>
<p>"Digital transformation succeeds when leaders focus on transforming people and processes, not just implementing technology."</p>
<cite>— David Park, Digital Strategy Consultant</cite>
</blockquote>
<p>The most successful digital transformations are led by leaders who understand that technology enables transformation, but people make it happen.</p>
`,
author: "David Park",
authorTitle: "Digital Strategy Consultant",
authorBio: "David Park is a Digital Strategy Consultant with extensive experience in leading large-scale digital transformations across multiple industries. He specializes in technology strategy and organizational change.",
authorImage: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop",
publishedDate: "2024-02-12",
readTime: "12 min read",
category: "Digital Transformation",
tags: ["Digital Strategy", "Change Management", "Technology", "Innovation"],
image: "https://images.unsplash.com/photo-1560472355-536de3962603?w=1200&h=600&fit=crop",
featured: false,
views: 2700,
likes: 41
},
{
id: 5,
title: "Crisis Leadership: Navigating Uncertainty with Confidence",
slug: "crisis-leadership-strategies",
excerpt: "Master the art of crisis leadership and learn how to guide your organization through challenging times.",
content: `
<p>Crisis situations test the mettle of leaders and reveal the true strength of an organization. Effective crisis leadership requires a unique combination of decisive action, clear communication, and emotional resilience.</p>
<h2>Principles of Crisis Leadership</h2>
<p>Successful crisis leaders follow key principles that help them navigate uncertainty:</p>
<ul>
<li><strong>Stay Calm Under Pressure:</strong> Maintaining composure to make clear-headed decisions.</li>
<li><strong>Communicate Transparently:</strong> Providing honest, frequent updates to all stakeholders.</li>
<li><strong>Act Decisively:</strong> Making tough decisions quickly with available information.</li>
<li><strong>Show Empathy:</strong> Understanding and addressing the human impact of the crisis.</li>
</ul>
<h2>Building Crisis Resilience</h2>
<p>The best time to prepare for a crisis is before it happens. Organizations need to build crisis response capabilities and leadership resilience proactively.</p>
<blockquote>
<p>"Crisis leadership is not about having all the answers—it's about maintaining trust and direction when everything seems uncertain."</p>
<cite>— Jennifer Adams, Crisis Management Expert</cite>
</blockquote>
<p>Leaders who excel in crisis situations combine strategic thinking with human compassion, creating stability in the midst of chaos.</p>
`,
author: "Jennifer Adams",
authorTitle: "Crisis Management Expert",
authorBio: "Jennifer Adams is a Crisis Management Expert with over 20 years of experience helping organizations navigate complex crises. She has advised government agencies and Fortune 500 companies on crisis preparedness and response.",
authorImage: "https://images.unsplash.com/photo-1580489944761-15a19d654956?w=150&h=150&fit=crop",
publishedDate: "2024-02-10",
readTime: "9 min read",
category: "Crisis Management",
tags: ["Crisis Leadership", "Risk Management", "Decision Making", "Communication"],
image: "https://images.unsplash.com/photo-1584697964358-3e14ca57658b?w=1200&h=600&fit=crop",
featured: false,
views: 1900,
likes: 35
},
{
id: 6,
title: "Sustainable Leadership: Building for the Long Term",
slug: "sustainable-leadership-practices",
excerpt: "Explore sustainable leadership practices that create lasting value for organizations and stakeholders.",
content: `
<p>Sustainable leadership goes beyond short-term gains to create lasting value for all stakeholders. It requires a long-term perspective that balances profit with purpose, growth with responsibility.</p>
<h2>The Sustainability Imperative</h2>
<p>Modern leaders must navigate increasing expectations for environmental and social responsibility while maintaining business performance.</p>
<h3>Key Elements of Sustainable Leadership</h3>
<ul>
<li><strong>Stakeholder Focus:</strong> Considering the needs of all stakeholders, not just shareholders.</li>
<li><strong>Environmental Stewardship:</strong> Making decisions that consider environmental impact.</li>
<li><strong>Social Responsibility:</strong> Contributing positively to communities and society.</li>
<li><strong>Economic Viability:</strong> Ensuring long-term business sustainability.</li>
</ul>
<blockquote>
<p>"Sustainable leadership is about creating value that endures beyond any individual leader's tenure, building organizations that thrive for generations."</p>
<cite>— Robert Kim, Sustainability Consultant</cite>
</blockquote>
<p>The future belongs to leaders who can balance multiple bottom lines—profit, people, and planet—while driving innovation and growth.</p>
`,
author: "Robert Kim",
authorTitle: "Sustainability Consultant",
authorBio: "Robert Kim is a Sustainability Consultant specializing in ESG strategy and sustainable business practices. He has helped numerous organizations integrate sustainability into their core business strategy.",
authorImage: "https://images.unsplash.com/photo-1560250097-0b93528c311a?w=150&h=150&fit=crop",
publishedDate: "2024-02-08",
readTime: "7 min read",
category: "Strategy",
tags: ["Sustainability", "ESG", "Long-term Thinking", "Stakeholder Value"],
image: "https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1200&h=600&fit=crop",
featured: false,
views: 1500,
likes: 28
}
];
// NOTE: Using articlesData imported from '../data/articlesData' (line 10)
// DO NOT create a local articlesData variable here as it will shadow the import
// Function to get blog post by slug
const getBlogPostBySlug = (slug: string): BlogPost => {
console.log('🔍 Searching for slug:', slug);
console.log('📋 Available slugs:', articlesData.map(a => ({ id: a.id, slug: a.slug })));
const article = articlesData.find(article => article.slug === slug);
if (!article) {
console.error('❌ Article not found. Available slugs:', articlesData.map(a => a.slug));
return {
id: '1',
id: 'not-found',
title: 'Article Not Found',
slug: 'not-found',
excerpt: `The requested article "${slug}" could not be found.`,
content: `
<p>We're sorry, but the article you're looking for could not be found. It may have been moved or removed.</p>
<p>Here are some available articles you can read:</p>
<p>Available articles:</p>
<ul>
<li><a href="/learning/articles/future-of-leadership-development">The Future of Leadership Development: Trends and Innovations</a></li>
<li><a href="/learning/articles/emotional-intelligence-in-leadership">Emotional Intelligence: The Key to Effective Leadership</a></li>
<li><a href="/learning/articles/building-high-performing-teams">Building High-Performing Teams: A Leader's Guide</a></li>
<li><a href="/learning/articles/digital-transformation-leadership">Leading Digital Transformation: A Strategic Approach</a></li>
<li><a href="/learning/articles/crisis-leadership-strategies">Crisis Leadership: Navigating Uncertainty with Confidence</a></li>
<li><a href="/learning/articles/sustainable-leadership-practices">Sustainable Leadership: Building for the Long Term</a></li>
${articlesData.slice(0, 6).map(article =>
`<li><a href="/learning/articles/${article.slug}">${article.title}</a></li>`
).join('')}
</ul>
<p><a href="/learning/articles">Return to all articles</a></p>
`,
author: 'KLC Team',
authorBio: 'The Knowledge Leadership Centre team is dedicated to providing excellent leadership development resources.',
authorBio: 'The Kautilya Leadership Center team',
authorImage: 'https://images.unsplash.com/photo-1494790108755-2616b612b47c?w=150&h=150&fit=crop',
publishedDate: '2024-01-01',
updatedDate: '2024-01-01',
@@ -355,65 +113,88 @@ const getBlogPostBySlug = (slug: string): BlogPost => {
};
}
console.log('✅ Article found:', article.title);
return {
id: article.id.toString(),
id: article.id,
title: article.title,
slug: article.slug,
excerpt: article.excerpt || '',
content: article.content || '',
author: article.author || 'Unknown Author',
authorBio: article.authorBio || `${article.author} is a contributor to Kautilya Leadership Center.`,
authorImage: article.authorAvatar || 'https://images.unsplash.com/photo-1494790108755-2616b612b47c?w=150&h=150&fit=crop',
publishedDate: article.date || '2024-01-01',
updatedDate: article.date || '2024-01-01',
readTime: article.readTime || '5 min read',
views: parseInt((article.views || '0').replace('k', '00').replace('.', '')) || 0,
likes: article.likes || 0,
category: article.category || 'General',
tags: article.tags || [],
image: article.thumbnail || 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop',
featured: article.featured || false
};
};
// Generate related posts dynamically from articlesData
const getRelatedPosts = (currentSlug: string, currentCategory: string): RelatedPost[] => {
// Filter articles by same category or exclude current article
const related = articlesData
.filter(article => article.slug !== currentSlug)
.slice(0, 3)
.map(article => ({
id: article.id,
title: article.title,
slug: article.slug,
excerpt: article.excerpt,
content: article.content,
author: article.author,
authorBio: article.authorBio,
authorImage: article.authorImage,
publishedDate: article.publishedDate,
updatedDate: article.publishedDate,
publishedDate: article.date,
readTime: article.readTime,
views: article.views,
likes: article.likes,
category: article.category,
tags: article.tags,
image: article.image,
featured: article.featured
};
image: article.thumbnail
}));
return related;
};
const relatedPosts: RelatedPost[] = [
{
id: '5',
title: 'A New Lens on Leadership',
slug: 'new-lens-on-leadership',
excerpt: 'Your leadership calls, and how you interpret opportunities and threats, are influenced by your lenses, which are unique and personal to you.',
author: 'K Ramkumar',
publishedDate: '2016-08-16',
readTime: '12 min read',
category: 'Leadership Philosophy',
image: 'https://images.unsplash.com/photo-1560550900-5c10828c40aa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxsZWFkZXJzaGlwJTIwbGVucyUyMHBlcnNwZWN0aXZlfGVufDF8fHx8MTc1OTk5NTg0N3ww&ixlib=rb-4.1.0&q=80&w=400'
},
{
id: '2',
title: 'Emotional Intelligence: The Key to Effective Leadership',
slug: 'emotional-intelligence-in-leadership',
excerpt: 'Discover how emotional intelligence impacts leadership effectiveness and learn practical strategies to develop your EQ.',
author: 'Dr. Michael Chen',
publishedDate: '2024-02-18',
readTime: '6 min read',
category: 'Personal Development',
title: 'Inspiration the magic potion to leadership',
slug: 'inspiration-magic-potion-leadership',
excerpt: 'Explore how inspiration serves as a fundamental catalyst for effective leadership, transforming both leaders and their teams toward extraordinary achievements.',
author: 'Ramkumar Krishnaswamy',
publishedDate: '2017-10-13',
readTime: '7 min read',
category: 'Leadership Philosophy',
image: 'https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=400&h=300&fit=crop'
},
{
id: '3',
title: 'Building High-Performing Teams: A Leader\'s Guide',
slug: 'building-high-performing-teams',
excerpt: 'Learn the essential strategies for creating and maintaining high-performing teams that deliver exceptional results.',
author: 'Lisa Rodriguez',
publishedDate: '2024-02-15',
readTime: '10 min read',
category: 'Team Development',
image: 'https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=400&h=300&fit=crop'
},
{
id: '4',
title: 'Leading Digital Transformation: A Strategic Approach',
slug: 'digital-transformation-leadership',
excerpt: 'Navigate the complexities of digital transformation with proven leadership strategies and best practices.',
author: 'David Park',
publishedDate: '2024-02-12',
readTime: '12 min read',
category: 'Digital Transformation',
image: 'https://images.unsplash.com/photo-1560472355-536de3962603?w=400&h=300&fit=crop'
title: 'Lessons on Leadership Paradox',
slug: 'lessons-leadership-paradox',
excerpt: 'Uncover the inherent paradoxes in leadership and learn how embracing these contradictions can make you a more effective and authentic leader.',
author: 'Ramkumar Krishnaswamy',
publishedDate: '2017-08-10',
readTime: '7 min read',
category: 'Leadership Strategy',
image: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=300&fit=crop'
}
];
export function BlogDetail({ params }: BlogDetailProps) {
const slug = params?.slug || '';
const { slug } = useParams<{ slug: string }>();
const [scrollProgress, setScrollProgress] = useState(0);
const [showBackToTop, setShowBackToTop] = useState(false);
const [isLiked, setIsLiked] = useState(false);
@@ -421,7 +202,7 @@ export function BlogDetail({ params }: BlogDetailProps) {
const { addToCart } = useCart();
// Get blog post data based on slug
const blogPost = getBlogPostBySlug(slug);
const blogPost = getBlogPostBySlug(slug || "");
useEffect(() => {
document.title = `${blogPost.title} | KLC Blog`;

View File

@@ -1,7 +1,7 @@
import { ArrowUpRight } from "lucide-react";
import { ImageWithFallback } from "./figma/ImageWithFallback";
import { BrandedTag } from "./about/BrandedTag";
import { PrimaryCTAButton } from "./PrimaryCTAButton";
import { StandardCTAButton } from "./StandardCTAButton";
import { navigateTo } from "./Router";
interface InsightCard {
@@ -11,30 +11,36 @@ interface InsightCard {
date: string;
tags: string[];
image: string;
slug?: string;
}
const insightCards: InsightCard[] = [
{
id: 1,
title: "The Evolving DNA of a Modern Leader",
description: "Explore how leadership traits are shifting in the age of AI, remote work, and hyper-connectivity.",
date: "25-05-2025",
tags: ["Adaptability", "Strategic foresight"],
image: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=800&q=80"
title: "A New Lens on Leadership",
description: "Your leadership calls, and how you interpret opportunities and threats, are influenced by your lenses, which are unique and personal to you.",
date: "16-08-2016",
tags: ["Leadership Lens", "Perspective"],
image: "https://images.unsplash.com/photo-1560550900-5c10828c40aa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxsZWFkZXJzaGlwJTIwbGVucyUyMHBlcnNwZWN0aXZlfGVufDF8fHx8MTc1OTk5NTg0N3ww&ixlib=rb-4.1.0&q=80&w=1080",
slug: "new-lens-on-leadership"
},
{
id: 2,
title: "Strategic Leadership in Uncertain Times",
date: "25-05-2025",
tags: ["Strategy", "Decision Making"],
image: "https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=800&q=80"
title: "Putting Psychometry in perspective",
description: "An in-depth exploration of the limitations and appropriate use of psychometric tools in leadership assessment and talent selection.",
date: "17-12-2016",
tags: ["Psychometry", "Assessment"],
image: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&h=400&fit=crop",
slug: "putting-psychometry-in-perspective"
},
{
id: 3,
title: "Building High-Performance Teams",
date: "25-05-2025",
tags: ["Team Building", "Performance"],
image: "https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=800&q=80"
title: "The Busby Way to Talent Management: The Making of \"Busby's Babes\" Part 1",
description: "How Matt Busby transformed Manchester United through visionary talent management and youth development, creating a legacy that shaped modern football leadership.",
date: "05-12-2013",
tags: ["Talent Management", "Youth Development"],
image: "https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=600&h=400&fit=crop",
slug: "busby-way-talent-management-part-1"
}
];
@@ -75,7 +81,7 @@ function CalendarIcon() {
// Explore All Button Component - Updated to redirect to articles page
function ExploreAllButton() {
return (
<PrimaryCTAButton
<StandardCTAButton
text="Explore All"
onClick={() => navigateTo('/learning/articles')}
ariaLabel="Explore all leadership insights and ideas"
@@ -85,8 +91,27 @@ function ExploreAllButton() {
// Large Insight Card Component
function LargeInsightCard({ card }: { card: InsightCard }) {
const handleClick = () => {
if (card.slug) {
navigateTo(`/learning/articles/${card.slug}`);
}
};
const hasLink = !!card.slug;
return (
<div className="relative h-[500px] rounded-xl overflow-hidden group cursor-pointer">
<div
className={`relative h-[500px] rounded-xl overflow-hidden group ${hasLink ? 'cursor-pointer' : ''}`}
onClick={hasLink ? handleClick : undefined}
role={hasLink ? 'button' : undefined}
tabIndex={hasLink ? 0 : undefined}
onKeyDown={hasLink ? (e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
handleClick();
}
} : undefined}
>
{/* Background Image */}
<div className="absolute inset-0 transition-transform duration-300 group-hover:scale-105">
<ImageWithFallback
@@ -134,8 +159,27 @@ function LargeInsightCard({ card }: { card: InsightCard }) {
// Small Insight Card Component
function SmallInsightCard({ card }: { card: InsightCard }) {
const handleClick = () => {
if (card.slug) {
navigateTo(`/learning/articles/${card.slug}`);
}
};
const hasLink = !!card.slug;
return (
<div className="relative h-[235px] rounded-xl overflow-hidden group cursor-pointer">
<div
className={`relative h-[235px] rounded-xl overflow-hidden group ${hasLink ? 'cursor-pointer' : ''}`}
onClick={hasLink ? handleClick : undefined}
role={hasLink ? 'button' : undefined}
tabIndex={hasLink ? 0 : undefined}
onKeyDown={hasLink ? (e) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
handleClick();
}
} : undefined}
>
{/* Background Image */}
<div className="absolute inset-0 transition-transform duration-300 group-hover:scale-105">
<ImageWithFallback

View File

@@ -107,7 +107,7 @@ export function Services() {
return (
<div style={{ backgroundColor: '#FFFFFF', fontFamily: 'var(--font-family-base)' }}>
{/* Hero Section */}
<section className="relative min-h-[85vh] flex flex-col">
<section className="relative flex flex-col py-24 min-h-[85vh]">
<div className="absolute inset-0 z-0">
<div
className="w-full h-full bg-cover bg-center bg-no-repeat"
@@ -156,6 +156,7 @@ export function Services() {
</div>
</section>
{/* Services Overview Section */}
<section className="py-20 lg:py-28" style={{ backgroundColor: '#FFFFFF' }}>
<div className="section-margin-x">
@@ -292,8 +293,7 @@ export function Services() {
<div
className="absolute h-[479px] left-[-71px] top-0 w-[639px] rounded-[16px] bg-cover bg-center bg-no-repeat"
style={{
backgroundImage: `url('https://images.unsplash.com/photo-${
index === 0 ? '1522071820-d3ca7b99e0dd' : // leadership team
backgroundImage: `url('https://images.unsplash.com/photo-${index === 0 ? '1758270705696-ec9caffc73dd' : // leadership team
index === 1 ? '1551836022-d5d88e9218df' : // assessment/analytics
index === 2 ? '1600880292203-757bb62b4baf' : // management meeting
index === 3 ? '1552664730-d307ca884978' : // culture/team

408
src/data/articlesData.ts Normal file
View File

@@ -0,0 +1,408 @@
export interface Article {
id: string;
slug: string;
title: string;
excerpt: string;
content: string;
author: string;
authorTitle: string;
authorAvatar: string;
authorBio?: string;
date: string;
readTime: string;
category: string;
tags: string[];
thumbnail: string;
featured: boolean;
views: string;
likes: number;
}
export const articlesData: Article[] = [
{
id: '1',
slug: 'future-of-leadership-development',
title: 'The Future of Leadership Development: Trends and Innovations',
excerpt: 'Explore emerging trends in leadership development and how organizations are adapting to create more effective leaders for tomorrow\'s challenges.',
content: 'Leadership development is evolving rapidly in response to changing workplace dynamics, technological advances, and new generations entering the workforce...',
author: 'Sarah Johnson',
authorTitle: 'Senior Leadership Consultant',
authorAvatar: 'https://images.unsplash.com/photo-1494790108755-2616b612b47c?w=150&h=150&fit=crop&crop=face',
authorBio: 'Sarah Johnson is a Senior Leadership Consultant with over 15 years of experience in organizational development and leadership training.',
date: '2024-02-20',
readTime: '8 min read',
category: 'Leadership Development',
tags: ['Future of Work', 'Leadership Trends', 'Innovation', 'Strategy'],
thumbnail: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop',
featured: true,
views: '2.4k',
likes: 45
},
{
id: '2',
slug: 'emotional-intelligence-in-leadership',
title: 'Emotional Intelligence: The Key to Effective Leadership',
excerpt: 'Discover how emotional intelligence impacts leadership effectiveness and learn practical strategies to develop your EQ.',
content: 'Emotional intelligence has become increasingly recognized as a critical factor in leadership success...',
author: 'Dr. Michael Chen',
authorTitle: 'Executive Coach',
authorAvatar: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop&crop=face',
authorBio: 'Dr. Michael Chen is an executive coach and organizational psychologist specializing in emotional intelligence development.',
date: '2024-02-18',
readTime: '6 min read',
category: 'Personal Development',
tags: ['Emotional Intelligence', 'Leadership Skills', 'Communication', 'Self-Awareness'],
thumbnail: 'https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=600&h=400&fit=crop',
featured: true,
views: '1.8k',
likes: 32
},
{
id: '3',
slug: 'building-high-performing-teams',
title: 'Building High-Performing Teams: A Leader\'s Guide',
excerpt: 'Learn the essential strategies for creating and maintaining high-performing teams that deliver exceptional results.',
content: 'High-performing teams don\'t happen by accident. They require intentional leadership, clear purpose, and the right environment...',
author: 'Lisa Rodriguez',
authorTitle: 'Team Development Specialist',
authorAvatar: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face',
authorBio: 'Lisa Rodriguez specializes in team dynamics and organizational performance optimization.',
date: '2024-02-15',
readTime: '10 min read',
category: 'Team Development',
tags: ['Team Building', 'Performance', 'Collaboration', 'Leadership'],
thumbnail: 'https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=600&h=400&fit=crop',
featured: false,
views: '3.1k',
likes: 58
},
{
id: '4',
slug: 'digital-transformation-leadership',
title: 'Leading Digital Transformation: A Strategic Approach',
excerpt: 'Navigate the complexities of digital transformation with proven leadership strategies and best practices.',
content: 'Digital transformation is reshaping industries and organizations worldwide. Successful transformation requires strong leadership...',
author: 'David Park',
authorTitle: 'Digital Strategy Consultant',
authorAvatar: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face',
authorBio: 'David Park helps organizations navigate digital transformation and technology adoption.',
date: '2024-02-12',
readTime: '12 min read',
category: 'Digital Transformation',
tags: ['Digital Strategy', 'Change Management', 'Technology', 'Innovation'],
thumbnail: 'https://images.unsplash.com/photo-1560472355-536de3962603?w=600&h=400&fit=crop',
featured: false,
views: '2.7k',
likes: 41
},
{
id: '5',
slug: 'crisis-leadership-strategies',
title: 'Crisis Leadership: Navigating Uncertainty with Confidence',
excerpt: 'Master the art of crisis leadership and learn how to guide your organization through challenging times.',
content: 'Crisis situations test the mettle of leaders and reveal the true strength of an organization...',
author: 'Jennifer Adams',
authorTitle: 'Crisis Management Expert',
authorAvatar: 'https://images.unsplash.com/photo-1580489944761-15a19d654956?w=150&h=150&fit=crop&crop=face',
authorBio: 'Jennifer Adams is a crisis management expert with extensive experience in organizational resilience.',
date: '2024-02-10',
readTime: '9 min read',
category: 'Crisis Management',
tags: ['Crisis Leadership', 'Risk Management', 'Decision Making', 'Communication'],
thumbnail: 'https://images.unsplash.com/photo-1584697964358-3e14ca57658b?w=600&h=400&fit=crop',
featured: false,
views: '1.9k',
likes: 35
},
{
id: '6',
slug: 'busby-way-talent-management-part-1',
title: 'The Busby Way to Talent Management: The Making of "Busby\'s Babes" Part 1',
excerpt: 'How Matt Busby transformed Manchester United through visionary talent management and youth development, creating a legacy that shaped modern football leadership.',
content: `
<p>Manchester United Football club, a premier club today, in 1945 was languishing with only one league title in nearly 40 years. Its coffers were empty. It was saddled with a debt of 15,000 sterling pounds. Its stadium was bombed out, derelict and dilapidated.</p>
<p>It was under these circumstances that the club appointed an army physical training instructor Sgt. Matt Busby as its Manager. Busby immediately recruited Jimmy Murphy as his assistant.</p>
<h2>Establishing Authority and Vision</h2>
<p>Busby first hammered out with the directors of the club a deal, not to interfere with how he ran the team. This was a first for the football club tradition of that period. Managers and coaches were not the super stars which they are today. According to people who were privy to the inside story, they attributed Busby's proximity to Mr. Louis Rocca as the reason for getting this authority. Rocca apart from being credited with the naming of the club in 1902 as Manchester United had grown on to become the "club's fixer" — he was the man for all seasons. Rocca was instrumental in convincing Busby to come to Man U from Liverpool.</p>
<h2>Maximizing Existing Talent</h2>
<p>Busby first took stock of the talent that was at his disposal. His only purchase was Jimmy Delaney from the Celtic. He had realised from his days as a player that when players played outside their position of ability they struggled. Busby discovered his talent when he shifted to a "defending half back" from being an "attacking inside half."</p>
<p>Busby restructured the playing positions of his team. His objective was to maximise the talent at his disposal. He shifted Johnny Carey (Captain) an "inside forward" to "right back" and crafted the famous forward line with Jim Delaney, Jack Rowley, Charlie Mitten and Stan Pearson. He then once again rearranged his forward line by shifting Chilton from "inside forward" to "centre forward" to play alongside Delaney and Rowley.</p>
<blockquote>
<p>"The result was that Manchester United finishing second in the league behind Liverpool, missing the title by just 2 points. The decades of languishing at the bottom of the table were over."</p>
</blockquote>
<p>Manchester United now was a title challenger. In the next 5 years Manchester United finished at a heart breaking number two for 4 years, and eventually won the title in the 1951-52 season. In the meanwhile the club won the FA cup in 1948 after 40 years.</p>
<h2>Building the Youth Academy</h2>
<p>During this period Busby put to practice his vision of nurturing the talent from within. His idea was to identify boys as young as 15 years from the schools and alleys all around, and nurture them. He then went on to recruit a group of assistants to help him gather a youth squad. He brought in Joe Armstrong as the scout because he found in him the talent for "establishing a lot of contacts, an appetite to travel around, an eye for locating ability in school boys and an ability to convince their parents". Thus arose the Manchester United youth academy and the youth team.</p>
<blockquote>
<p>"I was aware of Manchester United because of Busby's youth team which went on to become the famous Busby's Babes and I am proud that I was one of them."</p>
<cite>— Bobby Charlton</cite>
</blockquote>
<h2>Instilling a Unique Playing Style</h2>
<p>Busby instilled in them a style of play, neither adopted nor practised in England during that time. He always encouraged them to play one touch and at best two touch football. He egged them on to stay on the attack. He wanted them to play a flowing football with a perpetual drive forward with the ball moving seamlessly from one to the other with a single touch. He placed a premium on character and loyalty to each other. He instilled in them that scoring goals mattered more than just moving the ball around. So he built his team around the forward line. He instilled an attitude that it was no shame to lose in the quest for a win.</p>
<h2>Blooding Young Talent</h2>
<p>By 1951, as his youth team was developing he started blooding players as young as 19 and 20 years into the senior team and was easing out the aging stars of the past 5 years. Jackie Blanchflower and Roger Bryne made their debut with the senior team in November 1951 and Delaney and Carey were out. In the 1952-53 season the sensational Duncan Edwards from the youth team made his debut at the age of 18 years. He went on to play for England by 1954. Bill Foulkes another youth team talent graduated to play for the seniors. He identified a rare talent from the second division Tommy Taylor and signed him up for Manchester United.</p>
<h2>The Courage to Rebuild</h2>
<p>In 1952-53 Busby tried as many as 30 players in the first division. Manchester United slipped to number 8, a year after winning the league. Bobby Charlton made the grade to the senior team this year. This was the worst league standing in 7 seasons for the club. The season ending game saw Manchester United being thrashed by Middlesbrough 5-0.</p>
<p>However the strategy of blooding the youth academy players was to pay rich dividends in a few years. In just 4 years, with players averaging just 22 years of age United brought the league title back to the club and retained it the next season as well. Finally "Busby's Babes" as they were called were on top of the world.</p>
<h2>Key Leadership Lessons</h2>
<ul>
<li><strong>Vision and Authority:</strong> Busby established clear authority to execute his vision without interference</li>
<li><strong>Talent Optimization:</strong> He maximized existing talent by placing people in positions that suited their abilities</li>
<li><strong>Long-term Thinking:</strong> Built a youth academy despite short-term pressures</li>
<li><strong>Cultural Transformation:</strong> Instilled a unique playing style and team culture</li>
<li><strong>Courage in Transition:</strong> Had the courage to rebuild despite temporary setbacks</li>
</ul>
`,
author: 'K Ramkumar',
authorTitle: 'Founder & Leadership Expert',
authorAvatar: '/images/k-ramkumar-profile.jpg',
authorBio: 'K Ramkumar is the founder of KLC (Kautilya Leadership Center) and a renowned leadership expert. With over two decades of experience in leadership development, organizational transformation, and executive coaching, he has helped thousands of leaders across India and globally develop their leadership capabilities.',
date: '2025-10-09',
readTime: '12 min read',
category: 'Talent Management',
tags: ['Talent Management', 'Youth Development', 'Leadership', 'Team Building', 'Organizational Transformation'],
thumbnail: 'https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=600&h=400&fit=crop',
featured: false,
views: '3.2k',
likes: 68
},
{
id: '7',
slug: 'putting-psychometry-in-perspective',
title: 'Putting Psychometry in perspective',
excerpt: 'An in-depth exploration of the limitations and appropriate use of psychometric tools in leadership assessment and talent selection.',
content: `
<p>The last few months have been an eye opener for me on how ubiquitous is the use of psychometrics as an assessment tool. My new role as the founder of a company dedicated to leadership development and my engagement with various organisations brought this home to me. I have realised that this is led by the well-meaning folks in various organisations, who chase objectivity and want to eliminate subjectivity, read judgement, in selecting managers and leaders. However, during my engagements, I recognised that most of the HR functionaries responsible for talent acquisition and leadership development have not taken the time to sit back and reflect on the limitations of psychometric tools and the best way they can leverage them.</p>
<p>I was no different until KV Kamath, then MD and CEO at ICICI Bank, opened my eyes in July 2002. I was then heading the HR function at ICICI Bank and I too was blindly using a combination of intelligence tests and behaviour profiling tools to select managers and leaders. Kamath, as is his wont, challenged me on this. How could I be sure that these tools were not actually filtering out the best managers and leaders, he asked?</p>
<p>I told him that internationally acclaimed test development organisations have developed these tools and that they were well researched. He asked me to carry out my own research by administering the same tests to 50 leaders who were one level below the board and whose capabilities as leaders was beyond dispute because of their track record over at least 15 years. Most of these leaders are today CEOs of large organisations across the world.</p>
<p>The rest, as they say, is history. Based on the tests, only one among the 50 would have been selected. I was shocked. My mission to deconstruct the world of intelligence tests and psychometrics commenced that day. This article has been brewing in my mind for years.</p>
<p>It is important for business leaders and HR practitioners to take a step back and re-examine the unintended consequences of blindly using off-the-shelf psychometric tools for assessment. This article is intended to help them think about psychometric tools with a new perspective.</p>
<h2>Can human ability and behaviour be measured?</h2>
<p>The search for conclusively predicting human ability is age old. The period following World War II saw the indiscriminate use of IQ tests to find the "whiz kids". This led to institution after institution blindly using IQ tests with scant understanding of their application and limitations.</p>
<p>In his book The Best and the Brightest, journalist-turned-author David Halberstam chronicles how in the 1960s, the high IQ "whiz kids" in John F Kennedy's administration crafted "brilliant policies that defied common sense" with respect to Cuba and Vietnam, which led to disastrous consequences for the US.</p>
<p>This is what Kamath was drawing my attention to. That leaders in industry can become academic and invite disastrous consequences through faulty selection/rejection using inappropriate tools and norms.</p>
<p>Alfred Binet, the inventor of IQ tests, had himself cautioned against using such tests to predict human ability. Eminent psychologists such as Jean Piaget, David McClelland, Richard Boyatzis and Daniel Goleman have questioned the propriety of using IQ tests and other such tools to judge or predict human ability.</p>
<p>I believe that it is important to challenge this lazy and ill-informed practice and put psychometrics in perspective. Can psychometric tools predict someone's success or failure in a job or leadership role? Can these tools "measure" human behaviour? Is there a "unit of measure" of human behaviour? Distance is measured in kilometres, volume in kilolitres, speed in kilometres per hour, and weight in kilograms. How can behaviour have calibrated measures like these?</p>
<p>Human behaviour is indeterminate and is a response to the stimulus from the environment. Its frequency, strength, volatility or stability, flexibility and above all, its impact, cannot be measured, because we have not yet designed a calibrated scale.</p>
<p>Informed professionals will challenge me by referring to the Likert scale. The scale gauges attitudes, values and opinion based on the extent to which respondents agree or disagree with a set of statements.</p>
<p>However, the Likert scale delivers broad judgement at best, not measurement. When more than one person responds to statements about the frequency, strength, volatility or stability of someone's behaviour, the scale helps in judgement. But it does not provide an estimation of the behaviour, leave alone measurement, because no two persons' experience of another person's behaviour can be consistently recalled and reported accurately.</p>
<p>The other issue with the measurement logic is that the scale used for measurement has to be calibrated. This means that every point of measurement can be measured finitely, for us to arrive at a quantitative value whose variance is within acceptable range, irrespective of who measures it.</p>
<h3>Let us take an example:</h3>
<p>He/She understand's the unexpressed motives of others.</p>
<p style="margin-left: 2rem;">Always &nbsp;&nbsp; Most of the times &nbsp;&nbsp; Sometimes &nbsp;&nbsp; Rarely</p>
<p>In a calibrated scale, the distance in terms of measurement value between two measurement indicators on the scale has a fixed value or proportion.</p>
<p>So in this example, how fixed are the measurement values between "Always" and "Most of the time"; and between "Most of the time" and "Sometimes"?</p>
<p>Is it "one unit" between "Always" and "Most of the time"; one unit between "Most of the time" and "Sometimes", and two units between "Always" and "Sometimes"?</p>
<p>"Always" or "Most of the time" and "Sometimes" cannot have a fixed numerical value. This is different from having a scale that says "100 times in a year", "50 times in a year", and "25 times in a year".</p>
<p>The Likert scale notwithstanding, we do not yet know how to measure human behaviour. At best, we can confirm the presence or absence or preference with some degree of frequency and strength of judgment. This is not even like estimating (instead of measuring) the size of a room. When we say "very big", "big", or "small", we are judging and not measuring.</p>
<p>When the output from these psychometric instruments are presented as quantitative numerical values such as indices or normative values, they fool us into believing that we have achieved measured quantitative objectivity.</p>
<h2>Can psychometric tests reliably predict job success or leadership success?</h2>
<p>We should be certain that direct and not surrogate outcome indicators connect a particular behaviour to the specific outcome. Performance or talent ratings are surrogate indicators, and will not suffice. How sure are we that extravert orientation brings success in sales compared with an introvert orientation? Even Myers Briggs Type Indicator (MBTI), the orientation profiling tool, does not claim so. More importantly, what direct measure of selling can be linked to extraversion or introversion?</p>
<p>We need to establish that a particular behaviour is not merely related to a particular outcome, but is the driver which causes the outcome. Hence, correlation will not suffice. Correlation only tells us that when a particular behaviour is present, a particular outcome is also present; it won't tell us which causes which. For example, fever and infection are related, but they do not tell us what caused the infection. At ICICI Bank, by blindly linking analytical and quantitative ability to leadership success, I would have caused great damage had it not been for Kamath's challenge.</p>
<p>When the designers of these tools claim that they have established predictive validity (that is, the outcome of the test predicts later performance), we have to take it with a pinch of salt. Let us say they claim to predict leadership success, should we not ask the following?</p>
<ul>
<li>What is the "measure" of leadership success? Is it the same in all contexts?</li>
<li>Which characteristic in a multi-characteristic tool have they found to have predictive validity for leadership success? For example, let us say, trust, power, perspectives, risk appetite and political savvy are the multiple characteristics that influence leadership outcomes. Should we not ask what algorithm was used to establish predictive validity? It is almost impossible to establish the predictive validity that even a single characteristic—say, trust—has on leadership outcomes, especially when we have no clarity on what is the measure of the outcome. So, most designers use distant measures like the performance rating of an individual or an internal talent rating. This is what I call surrogate measures which are themselves outcomes of gross judgment.</li>
</ul>
<p>Let us grant leeway and accept this approach of surrogate measures. Let us also say that instead of a casual connect there is a relationship connect. Then should we at least not ensure the correlation scores are in excess of .65 to .80? (The closer the score is to 1, the stronger is the correlation.)</p>
<p>Till date I have not come across any psychometric tool which shows a correlation of more than 0.2 even to these surrogate indicators. A 0.2 level of correlation even between two variables is no better than a guess. It doesn't determine what caused the outcome. How risky is it then to use these as selection and elimination tools?</p>
<p>We also have to be sure that a particular outcome is not caused by any other behaviour. In the sales example, let us say for the sake of argument that extraversion drives success. How sure are we that perseverance does not also cause the same outcome? Assuming both drive success in sales, how would we empirically assign weightage to extraversion and perseverance? If we were to assign weightage non-empirically, how can the outcome be objective?</p>
<p>It is also possible that a particular behaviour causes a particular outcome only when another behaviour is present or absent. For example, for nurturance to be effective, care together with faith in others' ability is required, but there should be no competitiveness. What constructs will help us make this empirical? If it cannot be empirical, this is at best qualitative data supported by judgment. It cannot have empirically confirmed predictive validity.</p>
<p>We also have to know precisely the frequency, intensity, stability, or flexibility of behaviour that is necessary to cause the particular outcome. For instance, a certain temperature is required for copper to melt; and some other metal will not melt at that temperature. At what level of intensity is someone passionate? At what level of intensity is she obsessive? How much care is useful and when does care obstruct clinical focus on performance?</p>
<p>All these have to be tested and empirically established through longitudinal studies over long periods of time, with the same set of people, in pre-set contexts, where there is no other potential interference. How long should the longitudinal period be? How many people should be studied? How do we control and isolate the contextual factors? All these become critical before we can claim that we can predict job, role or leadership success based on a set of behaviours or what we call psychometric tools.</p>
<h2>My proposition is not that we should rely on our current subjective judgmental approach and not use any tools.</h2>
<p>We currently blindly use behaviour profiling tools for behaviour measurement and prediction. We use it irresponsibly for selecting and rejecting.</p>
<p>Instead, if we accept that profiling tools do not offer measurement or prediction of outcomes, but are more like tools that generate data to support decisions, we will make better use of them.</p>
<p>Behaviour profilers are not like pathological tests which are truly measurement-based and predictive. They are not 3D imaging tools, which accurately capture all the human features. These are at best thumbnail sketches of people. This is not biometrics. This is like using your hand instead of a thermometer to check for fever. These are not calibrated maps, but a pencil sketch on a piece of paper showing the general route to be taken.</p>
<p>With this perspective, profilers will not create confusion whether the person whose profile we are studying has the characteristics of a Mike Tyson or a Mother Teresa. These tools cannot predict that all aggressive people will create Tyson-like outcomes in a boxing ring or outside of it. Or that all people with compassion will end up like Mother Teresa. More importantly, it cannot tell you how much of aggressiveness or compassion creates Tyson-like or Mother Teresa-like outcomes.</p>
<p>Aggression and compassion, like all behaviours, are neutral. Context and the magnitude of these behaviours determines whether these behaviours are appropriate or not.</p>
<p>Hence, we should stop claiming that behaviour profiling tools can predict performance. They can be used as data gathering tools for making someone aware of their orientations. The output from profilers is valuable for conversations about a person's development, to create insights for them on the consequences of their behavioural orientation in different contexts. Profilers help us reconcile our self-image with how others experience us. This is the best value that profilers deliver to us.</p>
<p>If used as a tool to support decisions, for collecting qualitative data and for development purposes, profilers will add immense value. But to connect them with any degree of confidence to performance outcomes or leadership success, and use them as assessment tools is irresponsible.</p>
<div style="margin-top: 3rem; padding: 1.5rem; background: rgba(248, 195, 1, 0.1); border-radius: 8px; font-style: italic; color: #666;">
<p style="margin: 0;">This article was originally published on Founding Fuel.</p>
</div>
`,
author: 'K Ramkumar',
authorTitle: 'Founder & Leadership Expert',
authorAvatar: '/images/k-ramkumar-profile.jpg',
authorBio: 'K Ramkumar is the founder of KLC (Kautilya Leadership Center) and a renowned leadership expert. With over two decades of experience in leadership development, organizational transformation, and executive coaching, he has helped thousands of leaders across India and globally develop their leadership capabilities.',
date: '2025-10-08',
readTime: '15 min read',
category: 'Assessment & Evaluation',
tags: ['Psychometry', 'Leadership Assessment', 'Talent Management', 'HR Tools', 'Measurement'],
thumbnail: 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&h=400&fit=crop',
featured: false,
views: '2.8k',
likes: 54
},
{
id: '8',
slug: 'new-lens-on-leadership',
title: 'A New Lens on Leadership',
excerpt: 'Your leadership calls, and how you interpret opportunities and threats, are influenced by your lenses, which are unique and personal to you.',
content: `
<div class="article-poetry" style="background: rgba(4, 4, 91, 0.05); padding: 2rem; border-left: 4px solid #04045B; margin: 2rem 0; border-radius: 8px; font-style: italic;">
<p style="margin-bottom: 0.5rem; line-height: 1.8;">The mighty elephant is hidden inside the wood</p>
<p style="margin-bottom: 0.5rem; line-height: 1.8;">The mighty elephant hides the wood</p>
<p style="margin-bottom: 0.5rem; line-height: 1.8;">The Creator is hidden inside the expansiveness of the universe</p>
<p style="margin-bottom: 0.5rem; line-height: 1.8;">The magic of Creation hides the expansiveness of the universe</p>
<p style="margin-top: 1rem; font-size: 0.875rem; opacity: 0.8;">— A translation of a verse by Tamil saint Thirumoolar</p>
</div>
<p>Each of us perceives the world differently because our brain decodes it differently based on sensory inputs—sight, sound, taste, smell and touch. To make meaning of all this, our brain then overlays emotions on the sensory inputs, followed by another filter—our beliefs. The way we make meaning of the world influences our choices and decisions. It is precisely these perceptual differences that give rise to the many hues of the same thing—our different world views, or the lenses through which we perceive the world.</p>
<p>It is these different lenses that make leaders interpret opportunities and threats so differently. The lens of a leader impacts his perspectives, ambition, risk appetite and orientation to trust. These in turn impact the approach the leader takes with respect to his comprehension and choice of vision or ideology, strategy, innovation, organisation culture and decision making.</p>
<p>Let me illustrate the various ways their lens impacts their decisions.</p>
<h2>1. It makes leaders interpret the same context differently and hold it as their personal realities.</h2>
<p>To give you an example from the world of politics, see the different approaches of American presidential candidates Donald Trump and Hillary Clinton—and our reactions to each.</p>
<p>Trump, the Republican party nominee, sees a world which is dangerous enough for the US to contemplate building the modern Great Wall and erect an iron curtain that will keep its enemies out (and throw out those already in). He is unable to see this as a wall and a curtain that will also isolate Americans. His idea of America is of a land only for the new "native Americans", never mind that the US was built by immigrants.</p>
<p>How could Clinton, the Democratic party nominee, be so blind to the "realities" that Trump sees? How could she deny that the US is probably the most hated nation after Rome? Is she naïve not to know that America's allies want to bite off the hand that feeds them? Is she oblivious to the deep religious and ethnic fault lines across the world and which threaten her homeland? Unlike Trump, she sees hope and opportunity and not fear and despondency. She accepts that the idea of America as envisioned by its founding fathers—that all men are created equal—is still work in progress. Yet she wants "togetherness" and an inclusive America for all.</p>
<h2>2. It makes leaders believe that opposite ideas will achieve the same objective.</h2>
<p>Before Mohandas Karamchand Gandhi, during all the 2,500 years of recorded history, no group of people were able to evict a foreign occupier without military engagement. A mere decade after Gandhi, even with Gandhi's example before them, the African National Congress became disillusioned with about 50 years of other means to overthrow apartheid. Goaded by Nelson Mandela, it chose armed confrontation, until it changed its approach again a decade after.</p>
<p>Communist revolutionary leaders like Vladimir Lenin, Mao Zedong, Ho Chi Minh and Fidel Castro sought to obliterate class inequality by curtailing individual freedom. Others have sought the same outcome through free market, free enterprise and freedom of expression.</p>
<p>Many of us extoll the Chinese model of development. Some leaders believe that democracy and freedom can co-exist with development. Some believe that if it comes to a trade-off between individual freedom and development, they will elect the former. Still others believe that it is agreeable, though not prudent, to sacrifice individual freedom in favour of economic development.</p>
<p>These themes play out in other institutions too. For example, some business leaders believe that they need to restrain employees—serving and those who have left—from critically reviewing them or their organisations. They see this as bringing disrepute to the institution. The values they espouse are, all secrets should remain within the family and the family honour is paramount. They put loyalty above freedom of expression and transparency.</p>
<p>A variant of this world view is that any criticism of the supremo is anti-institutional. The belief here is that the well-being of an institution is inextricably entwined with that of the leader, no matter how inappropriate his actions. The institution here can be a nation, commercial organisation, social organisation or a family. How else will we make sense of the RK Pachauri saga and the choices made by the wise leaders who governed The Energy and Resources Institute?</p>
<h2>3. It makes us justify something in one context and denounce it in another, without any contradictions in our minds.</h2>
<p>The founding fathers of the US embedded the idea of equality in their constitution and yet were blind to racial and gender inequality and oppression. Sir Winston Churchill and the so-called free world fought for liberty and freedom in World War II when the forces arraigned on both sides were all imperial powers. Before then their unsaid position was "my freedom and liberty is my right while yours is not. I will cling to my imperial holdings, but have ethical and moral objections when some other nation flexes its imperial muscle and threatens my sovereignty".</p>
<h2>Moving to the Business Context</h2>
<p>Now let us move to the mundane from the sublime. In the business context the leaders' lens determines the path to market leadership.</p>
<p>For the leadership of one bank, it is balance sheet growth; that of another is prepared to trade-off balance sheet size for profitability. For one packaged consumer goods company it is product innovation; for another it is cost leadership and pricing power. For one firm the opportunity lies in cross-border business expansion; for another it is maximising growth in the local market.</p>
<p>Their lens also colours how they view competence. For many leaders proficiency in English is the indicator. This makes them blind to the fact that in most commercial organisations success in the junior level of leadership is largely driven by problem solving skills, interpersonal effectiveness and personal drive. None of these have anything to do with proficiency in English. This leads us to exclude a large number of competent people from the consideration set because they are not proficient in English.</p>
<p>In 2007 when my team and I were brainstorming at Kashid near Mumbai, we were bold enough to challenge this lens on competence. That is where the now successful ICICI probationary officers programme was born. During the last eight years, ICICI Bank has inducted around 10,000 youth from the interiors of India, who have turned out to be stellar bankers and more importantly, leaders. All that was required was to challenge and grind our lens to see the world of competence differently. What is interesting is that only a year into their training, all these probationary officers became as proficient in English as the best from any convent educated school.</p>
<p>Similarly, the leadership of many institutions see investment in physical distribution as the most efficient and effective way to expand their reach and improve customer service, while a few see the digital route as the answer. Proponents of the physical channel argue that customer service will be impersonal on the digital channel. Their lens prevents them from seeing the reality that old mothers swear by Skype and Facetime to connect with their children abroad and find the experience as deeply personal and intimate. More importantly, where it comes to the established banks in the world, this lens has made them sitting ducks to be disrupted by the newer banks which swear by the digital channel. The leadership of the established banks is failing to see the irrelevance of a physical branch when less than 10% of the total customer base and almost insignificant percentage of the profitable customers ever visit a branch. Unfortunately the leaders in these banks are hesitant to correct their myopic lens.</p>
<h2>Connecting to Leadership</h2>
<p>How does all of this connect to leadership? In my book, leadership comes into play only when we are seeking to transform/alter/change a status quo. (This understanding of leadership is shaped by my personal lens and many readers could have other nuanced understanding of leadership.)</p>
<p>Like I said in the beginning, a leader's lens impacts his perspective, ambition, risk appetite and orientation to trust. These in turn impact his vision and strategy.</p>
<p>Perspective is the heart of leadership and our orientation to trust has a significant impact on perspectives—whether it will be narrow and broad.</p>
<h3>The Magnified Lens</h3>
<p>A hyper magnified (zoomed in) leadership lens leads us to an inductive thought process and a narrow perspective. We seek more and more sensory inputs (data). We are driven by the need for detailing and concreteness. We seek proof that the decision will work. This in turn influences our risk appetite and decision making. A hyper magnified lens is shaped by our orientation to trust. This is dictated by our emotions based on our past experience—such as fear of failure, shame arising from getting something wrong or loss arising out of being cheated. We therefore seek proof before we trust. Proof seeking demands more and more verifiable data.</p>
<h3>The Telescopic Lens</h3>
<p>In contrast, a telescopic (zoomed out) leadership lens leads us to a deductive thought process and a broad perspective. This lens frames a wide-angle picture which connects disparate images and information, and tells a story—of the world as we "want" it to be or we "believe" it can be. This lens influences risk appetite and decision making very differently. A telescopic lens too is shaped by our orientation to trust.</p>
<h2>The Role of Emotions and Beliefs</h2>
<p>Our beliefs and our emotions impact the way we collect and integrate sensory data. Based our beliefs and emotional triggers, we give significance to certain data, filter out others, morph a few, choose the classification into which it will be put into and the connections that will be made to present us with a story (meaning and comprehension).</p>
<p>Since we are working with the lens metaphor, we cannot limit our understanding only to the narrow or broad perspectives. This is a function of focus. Emotions and beliefs also colour our world view—the Trump or Clinton world view; the Marx or the McCarthy world view; the Gandhi or the Subhash Chandra Bose world view. What we refer to as orientations, is the function of the emotion and belief that overlays the sensory data. That is why machine processed data will go through plain glass and not a lens. When we classify leaders as left or right, conservative or liberal, inclusive or exclusive, optimistic or pessimistic, radical or conventional, we are talking about the colour of our lenses (and the colour of the leaders' lenses too).</p>
<h2>Understanding Bias</h2>
<p>When we use the term 'bias' we actually refer to our lens amplifying or diminishing, colouring or distorting certain sensory data. Bias is actually preference for certain characteristics, choices, outcomes or practices. This can become a leader's default setting. Gandhi preferred non-violence while Bose believed that foreign occupation cannot be removed without armed conflict. Leaders who have an orientation for relationship amplify the positives of customer contact in physical channels and find drawbacks with automated channels by amplifying their impersonal nature. So, bias is not only likes and dislikes for people. Leaders' approach to strategy, culture, innovation and decision making thus get impacted by the colour of their lenses.</p>
<h2>The Essence of Leadership</h2>
<p>All leadership processes such as vision, choice set of strategies that we arraign, staying inside or stepping out of a paradigm (innovation), and the calls we eventually make are shaped, directed and controlled by our perspectives—narrow or broad, or the colour of the perspectives. Our lens to the world therefore is the key to our leadership fit for a given leadership context.</p>
<p>Without our unique world view, we would all end up making the same choice given a context. The consequence would be that problems and solutions which that one lens cannot comprehend would remain unsolved forever.</p>
<p>If sensory data alone could shape our lenses, we would have been no different from the other animal species. That emotions and beliefs define the nature and character of our lenses is what makes humans special. It is this that allows us to shape the world around us. Is this not the essence of leadership?</p>
<div style="margin-top: 3rem; padding: 1.5rem; background: rgba(248, 195, 1, 0.1); border-radius: 8px; font-style: italic; color: #666;">
<p style="margin-bottom: 0.5rem;"><strong>Disclaimer:</strong></p>
<p style="margin: 0;">This article was originally published on Founding Fuel, on August 12 '16.</p>
</div>
`,
author: 'K Ramkumar',
authorTitle: 'Founder & Leadership Expert',
authorAvatar: '/images/k-ramkumar-profile.jpg',
authorBio: 'K Ramkumar is the founder of KLC (Kautilya Leadership Center) and a renowned leadership expert. With over two decades of experience in leadership development, organizational transformation, and executive coaching, he has helped thousands of leaders across India and globally develop their leadership capabilities.',
date: '2025-10-07',
readTime: '12 min read',
category: 'Leadership Philosophy',
tags: ['Leadership Lens', 'Perspective', 'Decision Making', 'World View', 'Bias', 'Vision'],
thumbnail: 'https://images.unsplash.com/photo-1560550900-5c10828c40aa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxsZWFkZXJzaGlwJTIwbGVucyUyMHBlcnNwZWN0aXZlfGVufDF8fHx8MTc1OTk5NTg0N3ww&ixlib=rb-4.1.0&q=80&w=1080',
featured: true,
views: '1.9k',
likes: 41
}
];