gitextract_05bs3w52/ ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── biome.json ├── components.json ├── docker-compose.yaml ├── next.config.js ├── package.json ├── postcss.config.js ├── public/ │ └── robots.txt ├── src/ │ ├── app/ │ │ ├── components/ │ │ │ ├── education.tsx │ │ │ ├── header.tsx │ │ │ ├── projects.tsx │ │ │ ├── skills.tsx │ │ │ ├── summary.tsx │ │ │ └── work-experience.tsx │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── opengraph-image.tsx │ │ ├── page.tsx │ │ └── sitemap.ts │ ├── components/ │ │ ├── avatar.tsx │ │ ├── command-menu.tsx │ │ ├── error-boundary.tsx │ │ ├── icons/ │ │ │ ├── github-icon.tsx │ │ │ ├── index.ts │ │ │ ├── linkedin-icon.tsx │ │ │ └── x-icon.tsx │ │ └── ui/ │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ └── section.tsx │ ├── data/ │ │ └── resume-data.ts │ └── lib/ │ ├── structured-data.ts │ ├── types.ts │ └── utils.ts ├── tailwind.config.js └── tsconfig.json