gitextract__kbgv8y5/ ├── .github/ │ └── workflows/ │ └── node.js.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CNAME ├── README.md ├── package.json ├── public/ │ ├── browserconfig.xml │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src/ ├── App.css ├── App.js ├── App.test.js ├── assests/ │ └── font-awesome/ │ ├── LICENSE.txt │ ├── css/ │ │ ├── all.css │ │ ├── brands.css │ │ ├── fontawesome.css │ │ ├── regular.css │ │ ├── solid.css │ │ ├── svg-with-js.css │ │ └── v4-shims.css │ ├── js/ │ │ ├── all.js │ │ ├── brands.js │ │ ├── conflict-detection.js │ │ ├── fontawesome.js │ │ ├── regular.js │ │ ├── solid.js │ │ └── v4-shims.js │ ├── less/ │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata/ │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ └── scss/ │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _shims.scss │ ├── _stacked.scss │ ├── _variables.scss │ ├── brands.scss │ ├── fontawesome.scss │ ├── regular.scss │ ├── solid.scss │ └── v4-shims.scss ├── components/ │ ├── ProjectCard/ │ │ ├── ProjectCard.css │ │ └── ProjectCard.js │ ├── certificationCard/ │ │ ├── CertificationCard.css │ │ └── CertificationCard.js │ ├── degreeCard/ │ │ ├── DegreeCard.css │ │ └── DegreeCard.js │ ├── experienceCard/ │ │ ├── ExperienceCard.css │ │ └── ExperienceCard.js │ ├── footer/ │ │ ├── Footer.css │ │ └── Footer.js │ ├── header/ │ │ ├── Header.css │ │ └── Header.js │ ├── projectLanguages/ │ │ ├── ProjectLanguages.css │ │ └── ProjectLanguages.js │ ├── socialMedia/ │ │ ├── SocialMedia.css │ │ └── SocialMedia.js │ └── softwareSkills/ │ ├── SoftwareSkill.css │ └── SoftwareSkill.js ├── containers/ │ ├── Main.js │ ├── certifications/ │ │ ├── Certifications.css │ │ └── Certifications.js │ ├── contact/ │ │ ├── Contact.css │ │ └── Contact.js │ ├── education/ │ │ ├── Educations.css │ │ └── Educations.js │ ├── experienceAccordion/ │ │ ├── ExperienceAccordion.css │ │ └── ExperienceAccordion.js │ ├── greeting/ │ │ ├── FeelingProud.css │ │ ├── FeelingProud.js │ │ ├── Greeting.css │ │ └── Greeting.js │ └── skills/ │ ├── CloudInfraImg.js │ ├── DataScienceImg.js │ ├── DesignImg.js │ ├── FullStackImg.js │ ├── SkillSection.js │ ├── Skills.css │ └── Skills.js ├── global.js ├── index.css ├── index.js ├── pages/ │ ├── contact/ │ │ ├── BlogsImg.js │ │ ├── ContactComponent.css │ │ └── ContactComponent.js │ ├── education/ │ │ ├── EducationComponent.css │ │ ├── EducationComponent.js │ │ └── EducationImg.js │ ├── experience/ │ │ ├── Experience.css │ │ ├── Experience.js │ │ └── ExperienceImg.js │ ├── home/ │ │ └── HomeComponent.js │ ├── projects/ │ │ ├── Projects.css │ │ ├── Projects.js │ │ └── ProjectsImg.js │ └── splash/ │ ├── Splash.css │ └── Splash.js ├── portfolio.js ├── serviceWorker.js └── theme.js