gitextract_khp8_3ci/ ├── .gitignore ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── package.json ├── postcss.config.js ├── public/ │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src/ │ ├── App.test.tsx │ ├── App.tsx │ ├── assets/ │ │ └── css/ │ │ └── styles.css │ ├── components/ │ │ ├── animations/ │ │ │ ├── FadeIn.tsx │ │ │ ├── FromDirection.tsx │ │ │ ├── Highlighter.tsx │ │ │ ├── Letter.tsx │ │ │ ├── Reveal.tsx │ │ │ ├── StaggerChildren.tsx │ │ │ └── index.tsx │ │ ├── atoms/ │ │ │ ├── Avatar/ │ │ │ │ └── index.tsx │ │ │ ├── Container/ │ │ │ │ └── index.tsx │ │ │ ├── ContentText/ │ │ │ │ └── index.tsx │ │ │ ├── ContentTitle/ │ │ │ │ └── index.tsx │ │ │ ├── FullRoundButton/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── HeaderText/ │ │ │ │ └── index.tsx │ │ │ ├── HighlightedText/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.tsx │ │ │ ├── MenuItem/ │ │ │ │ └── index.tsx │ │ │ ├── Overlay/ │ │ │ │ └── index.tsx │ │ │ ├── RoundedButton/ │ │ │ │ └── index.tsx │ │ │ ├── TextBox/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── TextButton/ │ │ │ │ └── index.tsx │ │ │ ├── TextSelectOption/ │ │ │ │ └── index.tsx │ │ │ ├── TitleLine/ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── decorations/ │ │ │ ├── Bullets.tsx │ │ │ ├── Stripes.tsx │ │ │ └── index.tsx │ │ ├── icons/ │ │ │ └── index.tsx │ │ ├── molecules/ │ │ │ ├── BlogPost/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── HighlightedTextIcon/ │ │ │ │ └── index.tsx │ │ │ ├── MainMenu/ │ │ │ │ └── index.tsx │ │ │ ├── MenuButton/ │ │ │ │ └── index.tsx │ │ │ ├── ProjectCard/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── SearchBox/ │ │ │ │ └── index.tsx │ │ │ ├── SectionTitle/ │ │ │ │ └── index.tsx │ │ │ ├── TextIconButton/ │ │ │ │ └── index.tsx │ │ │ ├── TextSelect/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.tsx │ │ │ └── index.tsx │ │ ├── organisms/ │ │ │ ├── About/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Blogs/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Contact/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Header/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Navigation/ │ │ │ │ └── index.tsx │ │ │ ├── Projects/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── Skills/ │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ └── index.tsx │ │ └── templates/ │ │ ├── Landing/ │ │ │ └── index.tsx │ │ └── index.tsx │ ├── contexts/ │ │ ├── index.ts │ │ └── language.ts │ ├── data/ │ │ ├── blogs.ts │ │ ├── contact.ts │ │ ├── header.ts │ │ ├── index.ts │ │ ├── projects.ts │ │ └── skills.tsx │ ├── index.tsx │ ├── localization/ │ │ ├── en/ │ │ │ ├── about.tsx │ │ │ ├── header.ts │ │ │ ├── index.ts │ │ │ ├── sections.ts │ │ │ └── skills.tsx │ │ └── id/ │ │ ├── about.tsx │ │ ├── header.ts │ │ ├── index.ts │ │ ├── sections.ts │ │ └── skills.tsx │ ├── pages/ │ │ └── Home/ │ │ └── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts ├── tailwind.config.js └── tsconfig.json