11import { useState } from "react" ;
22import microsoftAzureFundamentals from "../assets/images/certifications/microsoft-azure-fundamentals.png" ;
33import awsAIPractitionerEarlyAdopter from "../assets/images/certifications/aws-ai-practitioner-foundational-early-adopter.png" ;
4+ import awsMachineLearningEngineerAssociateEarlyAdopter from "../assets/images/certifications/aws-machine-learning-engineer-associate-early-adopter.png" ;
45import awsCloudPractitioner from "../assets/images/certifications/aws-cloud-practitioner-foundational.png" ;
56import awsAIPractitioner from "../assets/images/certifications/aws-ai-practitioner-foundational.png" ;
67import awsSolutionsArchitectAssociate from "../assets/images/certifications/aws-solutions-architect-associate.png" ;
8+ import awsMachineLearningEngineerAssociate from "../assets/images/certifications/aws-machine-learning-engineer-associate.png" ;
79import awsSecuritySpecialty from "../assets/images/certifications/aws-security-specialty.png" ;
810
911const Certifications : React . FC = ( ) => {
@@ -15,6 +17,11 @@ const Certifications: React.FC = () => {
1517 alt : "AWS Certified AI Practitioner Early Adopter" ,
1618 url : "https://www.credly.com/badges/afe8b909-aed7-450d-b906-5e2abfa8d37f" ,
1719 } ,
20+ {
21+ src : awsMachineLearningEngineerAssociateEarlyAdopter ,
22+ alt : "AWS Certified Machine Learning Engineer - Associate" ,
23+ url : "https://www.credly.com/users/zyphaex" ,
24+ } ,
1825 {
1926 src : microsoftAzureFundamentals ,
2027 alt : "Microsoft Azure Fundamentals" ,
@@ -35,6 +42,11 @@ const Certifications: React.FC = () => {
3542 alt : "AWS Certified Solutions Architect - Associate" ,
3643 url : "https://www.credly.com/badges/d82b9825-86a8-4430-bb62-74969ffe2768" ,
3744 } ,
45+ {
46+ src : awsMachineLearningEngineerAssociate ,
47+ alt : "AWS Certified Machine Learning Engineer - Associate" ,
48+ url : "https://www.credly.com/users/zyphaex" ,
49+ } ,
3850 {
3951 src : awsSecuritySpecialty ,
4052 alt : "AWS Certified Security - Specialty" ,
@@ -45,13 +57,13 @@ const Certifications: React.FC = () => {
4557 return (
4658 < section >
4759 < div className = "relative mx-auto w-full max-w-3xl overflow-hidden" >
48- < div className = "relative flex flex-wrap items-center justify-center " >
60+ < div className = "relative flex flex-wrap justify-evenly gap-y-8 " >
4961 { certifications . map ( ( cert , index ) => (
5062 < div
5163 key = { index }
5264 className = { `relative h-[180px] w-[130px] shrink-0 transform overflow-hidden rounded-lg transition-transform ${
53- hoveredIndex === index ? "z-10 scale-105" : "z-1 "
54- } ${ index !== 0 ? "-ml-[40px ]" : "" } `}
65+ hoveredIndex === index ? "z-10 scale-105" : "z-0 "
66+ } ${ index !== 0 ? "-ml-[80px ]" : "" } `}
5567 onMouseEnter = { ( ) => setHoveredIndex ( index ) }
5668 onMouseLeave = { ( ) => setHoveredIndex ( null ) }
5769 >
0 commit comments