import { Linkedin, Github, Award } from 'lucide-react' import { COLORS } from '../constants' import { Tooltip } from './Tooltip' const Introduction = () => { const BoldStyle = 'text-blue-900 dark:text-blue-300 font-semibold' const socialLinks = [ { icon: , href: 'https://www.linkedin.com/in/taqi-tahmid/', label: 'LinkedIn', }, { icon: , href: 'https://github.com/TheTaqiTahmid', label: 'GitHub', }, { icon: , href: 'https://ti-user-certificates.s3.amazonaws.com/e0df7fbf-a057-42af-8a1f-590912be5460/3da54db2-f994-4148-a0ca-705ae1d748cd-mohammad-taqi-tahmid-094cf8b4-0db8-4a9f-b787-b4efbb2a90fe-certificate.pdf', label: 'CKA Certificate', }, ] return (

Taqi Tahmid

Test Automation and DevOps Engineer

I am a DevOps and{' '} Test Automation engineer with a{' '} certified Kubernetes Administrator (CKA) certification, specializing in managing Kubernetes clusters and cloud infrastructure. Currently working at Ericsson in Finland as a DevOps Engineer.

I bring four years of industry experience in designing CI/CD pipelines and test automation for diverse applications and architectures. I hold a Bachelor's degree from Khulna University of Engineering & Technology (KUET) and a Master's degree from Tampere University. My expertise spans across the entire DevOps lifecycle, from cluster management and infrastructure automation to implementing robust testing frameworks.

{socialLinks.map((link, index) => ( ))}
) } export default Introduction