Intelligence Analyst Academy Logo
The Intel Analyst AcademyIAA
Home

Core Intelligence

  • Foundations
    Foundations
    Intelligence fundamentals
  • Strategic Intelligence
    Strategic Intelligence
    Long-term planning
  • Tactical Intelligence
    Tactical Intelligence
    Immediate operations
  • Operational Intelligence
    Operational Intelligence
    Day-to-day operations

Intelligence Methods

  • OSINT
    OSINT
    Open Source Intelligence
  • Digital Intelligence
    Digital Intelligence
    Digital evidence & analysis
  • Geospatial Intelligence
    Geospatial Intelligence
    Geographic analysis
  • Financial Intelligence
    Financial Intelligence
    Financial investigations

Analysis & Skills

Analytical Techniques
Analytical Techniques
Intelligence Tools
Intelligence Tools
Source Evaluation
Source Evaluation
Report Writing
Report Writing
Intelligence Ethics
Intelligence Ethics
Cognitive Bias
Cognitive Bias
Intelligence Communication
Communication
Excel for Analysts
Excel for Analysts

View All Learning Paths

Explore our complete curriculum

Browse All Paths →

Community

  • Community Forum
    Community Forum
    Connect with other analysts
  • Coming Soon
    Coming Soon
    Upcoming features and content

Materials

  • Downloads
    Downloads
    Templates, guides, and tools
  • Learn More
    Learn More
    Additional learning resources
Intelligence Analysis Workspace

Request a Topic

Don't see what you're looking for? Request new content.

Submit Request →
Admin: Manage Images
About

Content Management

  • Manage Images
    Manage Images
    Upload and organize images
  • Manage Videos
    Manage Videos
    Upload and organize videos
  • Blob Upload
    Blob Upload
    Upload files to blob storage
  • Coming Soon Pages
    Coming Soon Pages
    Manage coming soon pages

System Management

  • System Status
    System Status
    Check system health
  • Search Test
    Search Test
    Test search functionality
  • Verify Search
    Verify Search
    Verify search results
  • Category Thumbnails
    Category Thumbnails
    Manage category thumbnails

Dashboard & Analytics

  • Admin Dashboard
    Admin Dashboard
    Overview and quick actions
  • Image Check
    Image Check
    Verify image integrity

Admin Dashboard

Access all admin tools and settings

Go to Dashboard →
Categories
Request Topic

The Intel Analyst Academy

Professional education for intelligence analysts at all levels. Mastering the art of collection, analysis, and dissemination.

Learning Paths

  • Foundations
  • Strategic Intelligence
  • Tactical Intelligence
  • OSINT

Resources

  • Downloads
  • Community Forum
  • About Us

Secure Comms

  • Contact Us
  • Request Intel Topics
  • Privacy Policy
  • Terms of Service

© 2026 The Intel Analyst Academy. All rights reserved.

End-to-end encrypted learning platform.

Intel Analyst Academy
DashboardContent ManagerSearch VerificationSettings
View Site
Dashboard
Users
Analytics
Return to Site

Loading admin dashboard...

Intelligence Category Thumbnails

This page showcases the custom thumbnails for each intelligence category. These thumbnails are designed to provide visual consistency across the platform.

Intelligence Category Thumbnails

Size:
Labels:
Foundations
Foundations
Strategic Intelligence
Strategic Intelligence
Tactical Intelligence
Tactical Intelligence
Operational Intelligence
Operational Intelligence
OSINT
OSINT
Report Writing
Report Writing
Threat Assessment
Threat Assessment
Crime Series Analysis
Crime Series Analysis
Hot Spot Analysis
Hot Spot Analysis
Network Analysis
Network Analysis
Target Profiling
Target Profiling
Crime Trend Analysis
Crime Trend Analysis
Intelligence Tools
Intelligence Tools
Source Evaluation
Source Evaluation
Digital Intelligence
Digital Intelligence
Geospatial Intelligence
Geospatial Intelligence
Intelligence Ethics
Intelligence Ethics
Cognitive Bias
Cognitive Bias
Financial Intelligence
Financial Intelligence
Intelligence Communication
Intelligence Communication
Analytical Techniques
Analytical Techniques
Excel for Analysts
Excel for Analysts

Implementation Guide

To use these thumbnails in your components, import the CategoryThumbnail component:

import { CategoryThumbnail } from "@/components/category-thumbnail"

// Basic usage
<CategoryThumbnail category="osint" />

// With custom size
<CategoryThumbnail category="strategic-intelligence" size="lg" />

// With label
<CategoryThumbnail category="tactical-intelligence" showLabel={true} />

// With custom class and click handler
<CategoryThumbnail 
  category="operational-intelligence" 
  className="my-custom-class" 
  onClick={() => console.log("Clicked!")} 
/>