> ## Documentation Index
> Fetch the complete documentation index at: https://rajanand.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Certification

export const CardGrid = ({categories: initialCategories, columns = 4, showInactive = false, filterBy = null, showFilterButtons = true}) => {
  if (!initialCategories || initialCategories.length === 0) return null;
  const activeItems = initialCategories.flatMap(cat => cat.items).filter(item => {
    const isActive = item.isActive === undefined ? true : item.isActive;
    return isActive || showInactive;
  });
  const allTags = [...new Set(activeItems.flatMap(item => item.tags || []))];
  let filteredItems = activeItems;
  let categories = [];
  let defaultCategory = null;
  if (filterBy) {
    const filterValues = Array.isArray(filterBy) ? filterBy : [filterBy];
    const validTags = filterValues.filter(tag => allTags.includes(tag));
    filteredItems = activeItems.filter(item => item.tags?.some(tag => validTags.includes(tag)));
    if (showFilterButtons) {
      categories = validTags.map(tag => ({
        id: tag,
        label: tag,
        items: activeItems.filter(item => item.tags?.includes(tag))
      }));
      defaultCategory = categories[0]?.id || null;
    }
  } else if (showFilterButtons) {
    categories = [{
      id: "all",
      label: "All",
      items: activeItems
    }, ...allTags.map(tag => ({
      id: tag,
      label: tag,
      items: activeItems.filter(item => item.tags?.includes(tag))
    }))];
    defaultCategory = "all";
  }
  const [activeCategory, setActiveCategory] = React.useState(defaultCategory);
  const activeItemsToShow = showFilterButtons ? categories.find(c => c.id === activeCategory)?.items || filteredItems : filteredItems;
  return <div className="space-y-8">
      {showFilterButtons && categories.length > 0 && <div className="flex flex-wrap gap-3">
          {categories.map(cat => <button key={cat.id} onClick={() => setActiveCategory(cat.id)} className={`px-4 py-2 text-sm rounded-full font-medium transition-colors ${activeCategory === cat.id ? "bg-black text-white dark:bg-white dark:text-black" : "bg-gray-100 text-black hover:bg-gray-200 dark:bg-white/10 dark:text-white dark:hover:bg-white/20"}`}>
              {cat.label}
            </button>)}
        </div>}

      {activeItemsToShow.length === 0 ? <p className="text-center text-gray-500">
          No courses match the selected filter.
        </p> : <CardGroup cols={columns}>
          {activeItemsToShow.map(item => <Card key={item.id} href={item.href} img={typeof item.image === "string" ? item.image : item.image.light} />)}
        </CardGroup>}
    </div>;
};

export const CoursesList = [{
  id: 'aws',
  label: 'AWS',
  items: [{
    id: '200-aws-educate-introduction-to-generative-ai',
    title: 'Introduction to Generative AI',
    icon: '/assets/icons/aws.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/200-aws-educate-introduction-to-generative-ai-badge.png',
    href: 'https://www.credly.com/badges/541968fc-3dd1-4a82-b754-4d5687885ab5',
    isActive: true,
    tags: ['AWS', 'AI', 'Gen AI']
  }, {
    id: '224-aws-educate-machine-learning-foundations',
    title: 'Machine Learning Foundations',
    icon: '/assets/icons/aws.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/224-aws-educate-machine-learning-foundations-badge.png',
    href: 'https://www.credly.com/badges/de314c3c-cf14-4dd1-ba55-0cffac30efae',
    isActive: true,
    tags: ['AWS', 'AI', 'ML']
  }, {
    id: '221-aws-partner-cloud-economics-essentials',
    title: 'Cloud Economics Essentials',
    icon: '/assets/icons/aws.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/221-aws-partner-cloud-economics-essentials-badge.png',
    href: 'https://www.credly.com/badges/7c03d2a4-d031-47fc-9054-b36ac5e2daec',
    isActive: true,
    tags: ['AWS', 'Cloud']
  }]
}, {
  id: 'clickhouse',
  label: 'ClickHouse',
  items: [{
    id: '233-clickhouse-01-getting-started-with-clickhouse',
    title: 'Getting Started with ClickHouse',
    icon: '/assets/icons/clickhouse.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/233-clickhouse-01-getting-started-with-clickhouse-badge.png',
    href: 'https://www.credly.com/badges/d2ddb182-3eec-491e-9391-5527e6461d02',
    isActive: true,
    tags: ['ClickHouse', 'Database']
  }, {
    id: '233-clickhouse-02-clickhouse-architecture',
    title: 'ClickHouse Architecture',
    icon: '/assets/icons/clickhouse.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/233-clickhouse-02-clickhouse-architecture-badge.png',
    href: 'https://www.credly.com/badges/6226beb5-1619-4e9b-8d76-3077dff7750c',
    isActive: true,
    tags: ['ClickHouse', 'Database']
  }]
}, {
  id: 'ibm',
  label: 'IBM',
  items: [{
    id: '229-ibm-cloud-essentials',
    title: 'Cloud Essentials',
    icon: '/assets/icons/ibm.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/229-ibm-cloud-essentials-badge.png',
    href: 'https://www.credly.com/badges/80b1be21-966b-4cbb-abca-adc6bd57d305',
    isActive: true,
    tags: ['IBM', 'Cloud']
  }]
}, {
  id: 'mavenanalytics',
  label: 'Maven Analytics',
  items: [{
    id: '238-maven-analytics-data-career-roadmap-badge',
    title: 'Data Career Roadmap',
    icon: '/assets/icons/mavenanalytics.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/238-maven-analytics-data-career-roadmap-badge.png',
    href: 'https://certificates.mavenanalytics.io/5758c297-81db-4a45-a961-92893e626c82#acc.QXw7j1A8',
    isActive: true,
    tags: ['Maven Analytics', 'Career', 'Data']
  }, {
    id: '237-maven-analytics-cloud-basics-badge',
    title: 'Cloud Basics',
    icon: '/assets/icons/mavenanalytics.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/237-maven-analytics-cloud-basics-badge.png',
    href: 'https://certificates.mavenanalytics.io/494a8f83-fac7-48e1-8947-77ffd60d2d9b',
    isActive: true,
    tags: ['Maven Analytics', 'Cloud']
  }, {
    id: '239-maven-analytics-intro-to-neural-networks-and-deep-learning-badge',
    title: 'Intro to Neural Networks and Deep Learning',
    icon: '/assets/icons/mavenanalytics.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/239-maven-analytics-intro-to-neural-networks-and-deep-learning-badge.png',
    href: 'https://certificates.mavenanalytics.io/e04779f1-7b97-4f2b-aaf6-257efde4917c',
    isActive: true,
    tags: ['Maven Analytics', 'AI', 'ML', 'Deep Learning']
  }, {
    id: '240-maven-analytics-optimizing-your-resume-badge',
    title: 'Optimizing Your Resume',
    icon: '/assets/icons/mavenanalytics.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/240-maven-analytics-optimizing-your-resume-badge.png',
    href: 'https://certificates.mavenanalytics.io/94c2fc99-1735-41fc-b66e-b800d3259d9b',
    isActive: true,
    tags: ['Maven Analytics', 'Career']
  }, {
    id: '242-maven-analytics-data-and-ai-ethics-badge',
    title: 'Data and AI Ethics',
    icon: '/assets/icons/mavenanalytics.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/242-maven-analytics-data-and-ai-ethics-badge.png',
    href: 'https://certificates.mavenanalytics.io/9c3e7102-50c4-49d8-a4ea-705e736f1009',
    isActive: true,
    tags: ['Maven Analytics', 'AI', 'Data']
  }]
}, {
  id: 'google',
  label: 'Google',
  items: [{
    id: '212-google-cloud-get-started-with-dataplex-skill-badge',
    title: 'Get Started with Dataplex',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/212-google-cloud-get-started-with-dataplex-skill-badge.png',
    href: 'https://www.credly.com/badges/9f6cdd32-07eb-4b4b-9dba-75de68eaa6c6',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '211-google-cloud-get-started-with-pub-sub-skill-badge',
    title: 'Get Started with Pub/Sub',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/211-google-cloud-get-started-with-pub-sub-skill-badge.png',
    href: 'https://www.credly.com/badges/f606050f-9485-404c-9dad-ffe6054c5858',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '205-google-cloud-build-a-data-warehouse-with-bigquery-skill-badge',
    title: 'Build a Data Warehouse with BigQuery',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/205-google-cloud-build-a-data-warehouse-with-bigquery-skill-badge.png',
    href: 'https://www.credly.com/badges/5896a9e9-af32-4024-9c9c-747073d897d9',
    isActive: true,
    tags: ['Google', 'Cloud', 'BigQuery', 'Data Warehouse']
  }, {
    id: '232-google-workspace-get-started-with-google-workspace-tools-skill-badge',
    title: 'Get Started with Google Workspace Tools',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/232-google-workspace-get-started-with-google-workspace-tools-skill-badge.png',
    href: 'https://www.credly.com/badges/14c52732-163a-40c2-9bab-b519f37df2de',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '260-google-skills-get-started-with-cloud-storage-skill-badge',
    title: 'Get Started with Cloud Storage',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/260-google-skills-get-started-with-cloud-storage-skill-badge.png',
    href: 'https://www.credly.com/badges/16abd5ec-8c36-4975-a2cc-c4d6404c024b',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '193-google-cloud-networking-fundamentals-in-google-cloud-badge',
    title: 'Get Started with Cloud Storage',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/193-google-cloud-networking-fundamentals-in-google-cloud-badge.png',
    href: 'https://www.skills.google/public_profiles/5513dd26-fc72-4894-b7ab-0df0c97f01a5/badges/67195',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '191-google-cloud-baseline-infrastructure-badge',
    title: 'Build a Data Warehouse with BigQuery',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/191-google-cloud-baseline-infrastructure-badge.png',
    href: 'https://www.skills.google/public_profiles/5513dd26-fc72-4894-b7ab-0df0c97f01a5/badges/57093',
    isActive: true,
    tags: ['Google', 'Cloud', 'BigQuery', 'Data Warehouse']
  }, {
    id: '192-google-cloud-essentials-badge',
    title: 'Get Started with Google Workspace Tools',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/192-google-cloud-essentials-badge.png',
    href: 'https://www.skills.google/public_profiles/5513dd26-fc72-4894-b7ab-0df0c97f01a5/badges/61631',
    isActive: true,
    tags: ['Google', 'Cloud']
  }, {
    id: '262-google-skills-introduction-to-generative-ai-course-badge',
    title: 'Introduction to Generative AI',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/262-google-skills-introduction-to-generative-ai-course-badge.png',
    href: 'https://www.skills.google/public_profiles/5513dd26-fc72-4894-b7ab-0df0c97f01a5/badges/10924057',
    isActive: true,
    tags: ['Google', 'AI', 'Gen AI']
  }, {
    id: '261-google-skills-innovating-with-data-and-google-cloud-course-badge',
    title: 'Innovating with Data and Google Cloud',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/261-google-skills-innovating-with-data-and-google-cloud-course-badge.png',
    href: 'https://www.skills.google/public_profiles/5513dd26-fc72-4894-b7ab-0df0c97f01a5/badges/10934545',
    isActive: true,
    tags: ['Google', 'Cloud', 'Data']
  }, {
    id: '269-google-skills-share-data-using-google-data-cloud-skill-badge',
    title: 'Share Data Using Google Data Cloud',
    icon: '/assets/icons/google.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/269-google-skills-share-data-using-google-data-cloud-skill-badge.png',
    href: 'https://www.credly.com/badges/099c2210-d7a1-48c4-9528-c0bdbe8630e5',
    isActive: true,
    tags: ['Google', 'Cloud', 'Data']
  }]
}, {
  id: 'microsoft',
  label: 'Microsoft',
  items: [{
    id: '216-azure-technical-workshop-microsoft-fabric-data-warehousing',
    title: 'Azure Technical Workshop: Microsoft Fabric Data Warehousing',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/216-azure-technical-workshop-microsoft-fabric-data-warehousing-participant.png',
    href: 'https://www.credly.com/badges/f4e3ccd1-8709-435b-b58b-f6b080d2ad88',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Data Warehousing']
  }, {
    id: '210-azure-technical-workshop-data-engineering-microsoft-fabric',
    title: 'Azure Technical Workshop: Data Engineering with Microsoft Fabric',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/210-azure-technical-workshop-data-engineering-microsoft-fabric-participant.png',
    href: 'https://www.credly.com/badges/7715e4a1-2231-4ec2-8ffb-a6d9486db070',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Data Engineering']
  }, {
    id: '225-azure-technical-workshop-microsoft-fabric-data-factory',
    title: 'Azure Technical Workshop: Microsoft Fabric Data Factory',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/225-azure-technical-workshop-microsoft-fabric-data-factory-participant.png',
    href: 'https://www.credly.com/badges/f4e3ccd1-8709-435b-b58b-f6b080d2ad88',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Data Factory']
  }, {
    id: '226-azure-technical-workshop-microsoft-fabric-implement-sql-database',
    title: 'Azure Technical Workshop: Microsoft Fabric Implement SQL Database',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/226-azure-technical-workshop-microsoft-fabric-implement-sql-database-participant.png',
    href: 'https://www.credly.com/badges/7715e4a1-2231-4ec2-8ffb-a6d9486db070',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'SQL', 'Database']
  }, {
    id: '219-azure-technical-workshop-microsoft-fabric-data-insights-with-ai',
    title: 'Azure Technical Workshop: Microsoft Fabric Data Insights with AI',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/219-azure-technical-workshop-microsoft-fabric-data-insights-with-ai-participant.png',
    href: 'https://www.credly.com/badges/071f836c-57c7-47b9-a91f-3362ce0aa8b2',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'AI']
  }, {
    id: '234-azure-project-ready-microsoft-fabric-real-time-intelligence',
    title: 'Azure Project Ready: Microsoft Fabric Real-Time Intelligence',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/234-azure-project-ready-microsoft-fabric-real-time-intelligence-skilled-participant.png',
    href: 'https://www.credly.com/badges/e5559dfa-c376-4ca3-b6ee-4635a67481df',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Real time']
  }, {
    id: '272-azure-project-ready-microsoft-fabric-analytics-skilled',
    title: 'Azure Project Ready: Microsoft Fabric Analytics',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/272-azure-project-ready-microsoft-fabric-analytics-skilled.png',
    href: 'https://www.credly.com/badges/60cb1e06-c8f1-4548-9766-348d2911e88c',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Analytics']
  }, {
    id: '217-azure-technical-workshop-data-governance-with-microsoft-purview',
    title: 'Azure Technical Workshop: Data Governance with Microsoft Purview',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/217-azure-technical-workshop-data-governance-with-microsoft-purview-participant.png',
    href: 'https://www.credly.com/badges/2612da1a-854f-4f76-a1f6-4cb68c2e12f9',
    isActive: true,
    tags: ['Microsoft', 'Data Governance', 'Purview']
  }, {
    id: '275-microsoft-project-ready-data-governance-with-microsoft-purview-skilled',
    title: 'Microsoft Project Ready: Data Governance with Microsoft Purview',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/275-microsoft-project-ready-data-governance-with-microsoft-purview-skilled.png',
    href: 'https://www.credly.com/badges/6bb418b2-f6b8-43fe-9d9e-e199d397079f',
    isActive: true,
    tags: ['Microsoft', 'Data Governance', 'Purview']
  }, {
    id: '209-azure-technical-workshop-azure-openai-workshop',
    title: 'Azure Technical Workshop: Azure OpenAI Workshop',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/209-azure-technical-workshop-azure-openai-workshop-participant.png',
    href: 'https://www.credly.com/badges/bfe653bc-3ade-401e-90fe-182c42049f7c',
    isActive: true,
    tags: ['Microsoft', 'Azure', 'AI']
  }, {
    id: '220-microsoft-technical-bootcamp-agentic-ai-accelerator',
    title: 'Microsoft Technical Bootcamp: Agentic AI Accelerator',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/220-microsoft-technical-bootcamp-agentic-ai-accelerator-participant.png',
    href: 'https://www.credly.com/badges/3dec5d49-5655-4653-b90e-75b001021477',
    isActive: true,
    tags: ['Microsoft', 'AI']
  }, {
    id: '207-microsoft-sales-bootcamp-fy25-microsoft-365-copilot',
    title: 'Microsoft Sales Bootcamp FY25: Microsoft 365 Copilot Project Ready',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/207-microsoft-sales-bootcamp-fy25-microsoft-365-copilot-project-ready-participant.png',
    href: 'https://www.credly.com/badges/383077b6-b236-4e77-b3ec-e9b4885a5e34',
    isActive: true,
    tags: ['Microsoft', 'Copilot', 'M365']
  }, {
    id: '218-microsoft-fabric-partner-bootcamp-sales-track-fy25',
    title: 'Microsoft Fabric Partner Bootcamp: Sales Track FY25',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/218-microsoft-fabric-partner-bootcamp-sales-track-fy25.png',
    href: 'https://www.credly.com/badges/4936adea-e90f-46ff-9ecc-5d7440562d98',
    isActive: true,
    tags: ['Microsoft', 'Fabric']
  }, {
    id: '206-microsoft-cloud-sales-bootcamp-accelerating-ai-solutions',
    title: 'Microsoft Cloud Sales Bootcamp: Accelerating AI Solutions FY25',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/206-microsoft-cloud-sales-bootcamp-accelerating-ai-solutions-bootcamp-fy25-participant.png',
    href: 'https://www.credly.com/badges/b5a9186f-5101-4def-9c99-fda92592f2f2',
    isActive: true,
    tags: ['Microsoft', 'AI', 'Cloud']
  }, {
    id: '208-microsoft-sales-bootcamp-fy25-power-your-ai-transformation',
    title: 'Microsoft Sales Bootcamp FY25: Power Your AI Transformation with Copilot',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/208-microsoft-sales-bootcamp-fy25-power-your-ai-transformation-with-copilot.png',
    href: 'https://www.credly.com/badges/e209b2b6-77bd-42cf-a6eb-d30504bcfe8b',
    isActive: true,
    tags: ['Microsoft', 'Copilot']
  }, {
    id: '263-microsoft-fabric-databricks-sales-bootcamp-skilled',
    title: 'Microsoft Fabric Databricks Sales Bootcamp Skilled',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/263-microsoft-fabric-databricks-sales-bootcamp-skilled.png',
    href: 'https://www.credly.com/badges/4fe17387-21e8-4981-b713-ae841a082757',
    isActive: true,
    tags: ['Microsoft', 'Fabric', 'Databricks']
  }, {
    id: '273-microsoft-azure-agentic-ai-proficient-developer-hackathon-participant',
    title: 'Microsoft Azure Agentic AI Proficient Developer Hackathon Participant',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/273-microsoft-azure-agentic-ai-proficient-developer-hackathon-participant.png',
    href: 'https://www.credly.com/badges/e38a503b-c838-4152-b09b-3b7e2c7929b8',
    isActive: true,
    tags: ['Microsoft', 'AI']
  }]
}, {
  id: 'cisco',
  label: 'Cisco',
  items: [{
    id: '274-cisco-networking-academy-python-essentials-1-badge',
    title: 'Cisco - Python Essentials 1',
    icon: '/assets/icons/cisco.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/274-cisco-networking-academy-python-essentials-1-badge.png',
    href: 'https://www.credly.com/badges/8daa1b6b-6426-4d39-9567-2a88f120948e',
    isActive: true,
    tags: ['Cisco', 'Python']
  }]
}, {
  id: 'linkedin',
  label: 'LinkedIn',
  items: [{
    id: '265-linkedin-become-an-ai-powered-people-manager',
    title: 'Become an AI-Powered People Manager',
    icon: '/assets/icons/linkedin.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/265-linkedin-learning-become-an-ai-powered-people-manager.png',
    href: 'https://www.linkedin.com/learning/certificates/3ea5fc9af6c957b1c817d625a7f7b1392559986f72ef2982919cafc45cc665d0',
    isActive: true,
    tags: ['LinkedIn']
  }]
}, {
  id: 'coursera',
  label: 'Coursera',
  items: [{
    id: '044-coursera-architecting-in-google-compute-engine-specialization',
    title: 'Architecting in Google Compute Engine Specialization',
    icon: '/assets/icons/coursera.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/044-coursera-architecting-in-google-compute-engine-specialization.png',
    href: 'https://www.coursera.org/account/accomplishments/specialization/X96FTXE6R5LU',
    isActive: true,
    tags: ['Coursera']
  }, {
    id: '076-coursera-gcp-security-specialization',
    title: 'Google Cloud Security Specialization',
    icon: '/assets/icons/coursera.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/courses/076-coursera-gcp-security-specialization.png',
    href: 'https://www.coursera.org/account/accomplishments/specialization/PUUH9HK2JK3Q',
    isActive: true,
    tags: ['Coursera']
  }]
}];

export const CertificationList = [{
  id: 'microsoft',
  label: 'Microsoft',
  items: [{
    id: 'microsoft-certified-solutions-expert-data-management-and-analytics',
    title: 'Microsoft Certified Solutions Expert: Data Management & Analytics',
    icon: 'https://mintlify-assets.b-cdn.net/tail-icon.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-solutions-expert-mcse-data-management-and-analytics-badge.png',
    href: '/certifications/microsoft#microsoft-certified-solutions-expert%3A-data-management-and-analytics',
    isActive: true,
    tags: ['Microsoft', 'Data', 'Analytics']
  }, {
    id: 'microsoft-certified-solutions-associate-database-development',
    title: 'Microsoft Certified Solutions Associate: Database Development',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-solutions-associate-mcsa-sql-2016-database-development-badge.png',
    href: '/certifications/microsoft#microsoft-certified-solutions-associate%3A-database-development',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-solutions-associate-bi-reporting',
    title: 'Microsoft Certified Solutions Associate: BI Reporting',
    icon: 'https://mintlify-assets.b-cdn.net/broom-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-solutions-associate-mcsa-business-intelligence-reporting-badge.png',
    href: '/certifications/microsoft#microsoft-certified-solutions-associate%3A-bi-reporting',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-sql-ai-developer-associate',
    title: 'Microsoft Certified: SQL AI Developer Associate',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-sql-ai-developer-associate-badge.svg',
    href: '/certifications/microsoft#microsoft-certified-sql-ai-developer-associate',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-azure-data-engineer-associate',
    title: 'Microsoft Certified: Azure Data Engineer Associate',
    icon: 'https://mintlify-assets.b-cdn.net/tail-icon.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-azure-data-engineer-associate-badge.png',
    href: '/certifications/microsoft#microsoft-certified%3A-azure-data-engineer-associate',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-fabric-data-engineer-associate',
    title: 'Microsoft Certified: Fabric Data Engineer Associate',
    icon: 'https://mintlify-assets.b-cdn.net/broom-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-fabric-data-engineer-associate-badge.png',
    href: '/certifications/microsoft#microsoft-certified%3A-fabric-data-engineer-associate',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-fabric-analytics-engineer-associate',
    title: 'Microsoft Certified: Fabric Analytics Engineer Associate',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-fabric-analytics-engineer-associate-badge.png',
    href: '/certifications/microsoft#microsoft-certified%3A-fabric-analytics-engineer-associate',
    isActive: true,
    tags: ['Microsoft']
  }, {
    id: 'microsoft-certified-power-bi-data-analyst-associate',
    title: 'Microsoft Certified: Power BI Analyst Associate',
    icon: 'https://mintlify-assets.b-cdn.net/tail-icon.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microsoft-certified-power-bi-data-analyst-associate-badge.png',
    href: '/certifications/microsoft#microsoft-certified%3A-power-bi-data-analyst-associate',
    isActive: true,
    tags: ['Microsoft']
  }]
}, {
  id: 'databricks',
  label: 'Databricks',
  items: [{
    id: 'databricks-certified-data-engineer-associate',
    title: 'Databricks Certified Data Engineer Associate',
    desc: 'Designing and implementing data engineering solutions using Databricks',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/databricks-certified-data-engineer-associate-badge.png',
    href: '/certifications/databricks#databricks-certified-data-engineer-associate',
    isActive: true,
    tags: ['Databricks']
  }]
}, {
  id: 'snowflake',
  label: 'Snowflake',
  items: [{
    id: 'snowpro-associate-platform-certification',
    title: 'SnowPro Associate: Platform Certification',
    desc: 'Understanding Snowflake data platform and its features',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/snowflake-snowpro-associate-platform-certification-badge.png',
    href: '/certifications/snowflake#snowpro-associate:-platform-certification',
    isActive: true,
    tags: ['Snowflake']
  }]
}, {
  id: 'google',
  label: 'Google',
  items: [{
    id: 'google-cloud-certified-associate-cloud-engineer',
    title: 'Google Cloud Certified Associate Cloud Engineer',
    desc: 'Deploying applications, monitoring operations, and managing enterprise solutions on Google Cloud',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/google-cloud-associate-cloud-engineer-badge.png',
    href: '/certifications/google#google-cloud-certified-associate-cloud-engineer',
    isActive: true,
    tags: ['Google']
  }]
}, {
  id: 'tableau',
  label: 'Tableau',
  items: [{
    id: 'tableau-desktop-specialist',
    title: 'Tableau Desktop Specialist',
    desc: 'Able to connect to Tableau desktop and prepare, explore and analyze data, and share insights.',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/tableau-desktop-specialist-badge.png',
    href: '/certifications/tableau#tableau-desktop-specialist-certification',
    isActive: true,
    tags: ['Tableau']
  }]
}, {
  id: 'oracle',
  label: 'Oracle',
  items: [{
    id: 'oracle-autonomous-database-cloud-2019-certified-specialist',
    title: 'Oracle Autonomous Database Cloud 2019 Certified Specialist',
    desc: 'Specialized in Oracle Autonomous Database Cloud services',
    icon: 'https://mintlify-assets.b-cdn.net/tail-icon.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/oracle-autonomous-database-cloud-2019-specialist-badge.png',
    href: '/certifications/oracle',
    isActive: true,
    tags: ['Oracle']
  }, {
    id: 'oracle-cloud-infrastructure-2019-certified-architect-associate',
    title: 'Oracle Cloud Infrastructure 2019 Certified Architect Associate',
    desc: 'Architecting and managing Oracle Cloud Infrastructure solutions',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/oracle-cloud-infrastructure-2019-certified-architect-associate-badge.png',
    href: '/certifications/oracle#oracle-cloud-infrastructure-2019-certified-architect-associate',
    isActive: true,
    tags: ['Oracle']
  }, {
    id: 'oracle-cloud-infrastructure-2019-certified-cloud-operations-associate',
    title: 'Oracle Cloud Infrastructure 2019 Certified Cloud Operations Associate',
    desc: 'Managing and operating Oracle Cloud Infrastructure services',
    icon: 'https://mintlify-assets.b-cdn.net/broom-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/oracle-cloud-infrastructure-2019-cloud-operations-certified-associate-badge.png',
    href: '/certifications/oracle#oracle-cloud-infrastructure-2019-certified-cloud-operations-associate',
    isActive: true,
    tags: ['Oracle']
  }, {
    id: 'oracle-cloud-infrastructure-foundations-2021-certified-associate',
    title: 'Oracle Cloud Infrastructure Foundations 2021 Certified Associate',
    desc: 'Foundational knowledge of Oracle Cloud Infrastructure services',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/oracle-cloud-infrastructure-foundations-2021-associate-badge.png',
    href: '/certifications/oracle#oracle-cloud-infrastructure-foundations-2021-certified-associate',
    isActive: true,
    tags: ['Oracle']
  }, {
    id: 'oracle-cloud-infrastructure-foundations-2020-certified-associate',
    title: 'Oracle Cloud Infrastructure Foundations 2020 Certified Associate',
    desc: 'Foundational knowledge of Oracle Cloud Infrastructure services',
    icon: 'https://mintlify-assets.b-cdn.net/neural-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/oracle-cloud-infrastructure-foundations-2020-associate-badge.png',
    href: '/certifications/oracle#oracle-cloud-infrastructure-foundations-2020-certified-associate',
    isActive: true,
    tags: ['Oracle']
  }]
}, {
  id: 'github',
  label: 'Github',
  items: [{
    id: 'github-foundations-certification',
    title: 'GitHub Foundations Certification',
    desc: 'GitHub basics like repositories, commits, branching, markdowns, and project management.',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/github-foundations-badge.png',
    href: '/certifications/github#github-foundations-certification',
    isActive: true,
    tags: ['Github']
  }]
}, {
  id: 'microstrategy',
  label: 'MicroStrategy',
  items: [{
    id: 'microstrategy-certified-analyst',
    title: 'MicroStrategy Certified Analyst',
    icon: 'https://mintlify-assets.b-cdn.net/tail-icon.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microstrategy-certified-analyst-badge.png',
    href: '/certifications/microstrategy#microstrategy-certified-analyst',
    isActive: false,
    tags: ['MicroStrategy']
  }, {
    id: 'microstrategy-certified-application-architect',
    title: 'MicroStrategy Certified Application Architect',
    icon: 'https://mintlify-assets.b-cdn.net/smart-light.svg',
    image: 'https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/microstrategy-certified-application-architect-badge.png',
    href: '/certifications/microstrategy#microstrategy-certified-application-architect',
    isActive: false,
    tags: ['MicroStrategy']
  }]
}];

## Badge

<CardGrid categories={CertificationList} columns={4} showFilterButtons={false} showInactive={true} filterBy={["Google"]} />

## Google Cloud Certified Associate Cloud Engineer

<Frame as="div" caption="July 01, 2019 - July 01, 2021">
  <a href="https://www.credly.com/badges/723bc360-85ec-4160-935d-000c0801f94e" target="_blank">
    <img height="200" src="https://raw.githubusercontent.com/rajanand/rajanand-ilangovan/refs/heads/master/certifications/google-cloud-certified-associate-cloud-engineer.png" />
  </a>
</Frame>

### Training Courses

<CardGrid categories={CoursesList} columns={4} showFilterButtons={false} showInactive={true} filterBy={["Google"]} />
