const certs = [ "Microsoft Certified: Azure Security Engineer Associate", "Microsoft Azure Administrator - AZ-104", "Microsoft Certified: Azure Fundamentals", "Cybersecurity Foundation - Palo Alto Networks", "IT Academy: Network Virtualization Concepts - VMware", "AWS Academy Graduate - AWS Academy Cloud Foundations", "Cloud Rider - 2020 - EduSkills Foundation", "Data Science Foundation using R - 360DigiTMG", "Machine Learning with Python - Cognitive Class", "Database Management System - NPTEL", "Introduction to Programming in C - NPTEL", ]; const honors = [ "MSBA academic performance - 3.8 GPA at UNT", "CyberSecurity Club, Business Analytics Club, and AIS member at UNT", "Research work published at BIGS 2025 and SWDSI 2026", ]; const leadership = [ "Vice President - College Photography Club", "Indian Film Festival - 2018 (Qualified) & 2019", "Multiple project seminars on Malicious URL Detection", "Hackathon - Bennett University Internship Program", ]; const campusExperience = [ { role: "Instructional Assistant", period: "Jan 2026 - May 2026", details: "Supports course tasks, keeps class activities organized, helps students.", }, { role: "Library Student Assistant (Stacks)", period: "Oct 2025 - Jan 2026", details: "Managed shelving, records accuracy and daily workflow.", }, { role: "Clark Bakery Student Assistant", period: "Nov 2024 - Oct 2025", details: "Operations, customer service, inventory and food-safety standards.", }, ]; export function CredentialsSection() { return (

CERTIFICATIONS & ACTIVITIES

Credentials

Certifications

Cloud, cybersecurity, programming, and analytics credentials.

11 credentials
    {certs.map((c) => (
  • > {c}
  • ))}

Honors & Research

    {honors.map((h) => (
  • > {h}
  • ))}

Leadership & Activities

    {leadership.map((l) => (
  • > {l}
  • ))}

Campus Experience - UNT

{campusExperience.map((job) => (

{job.role}

{job.period}

{job.details}

))}
); }