gitextract_r5j2l4sc/ ├── .all-contributorsrc ├── .eslintignore ├── .eslintrc.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature-enhancement-request.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── config.yml │ └── workflows/ │ └── deploy.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CHEATSHEET.md ├── CODE_OF_CONDUCT.md ├── CODE_STYLE_GUIDE.md ├── COMMIT_CONVENTION.md ├── CONTRIBUTING.md ├── DEPLOYMENT.md ├── LICENSE ├── README.md ├── env.example ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public/ │ ├── manifest.json │ └── robots.txt ├── setupTests.js ├── src/ │ ├── app/ │ │ ├── about/ │ │ │ └── page.tsx │ │ ├── addons/ │ │ │ └── page.tsx │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── robots.ts │ │ ├── sitemap.ts │ │ └── support/ │ │ └── page.tsx │ ├── components/ │ │ ├── analytics/ │ │ │ └── conditional-analytics.tsx │ │ ├── forms/ │ │ │ ├── __tests__/ │ │ │ │ └── form-input.test.tsx │ │ │ ├── form-checkbox.tsx │ │ │ ├── form-input.tsx │ │ │ ├── form-select.tsx │ │ │ ├── form-textarea.tsx │ │ │ └── github-username-input.tsx │ │ ├── layout/ │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ └── theme-provider.tsx │ │ ├── sections/ │ │ │ ├── basic-info-section.tsx │ │ │ ├── links-section.tsx │ │ │ ├── skills-section.tsx │ │ │ └── social-section.tsx │ │ └── ui/ │ │ ├── accessibility-menu.tsx │ │ ├── buy-me-coffee.tsx │ │ ├── collapsible-section.tsx │ │ ├── confirm-dialog.tsx │ │ ├── cookie-consent.tsx │ │ ├── github-stats.tsx │ │ ├── markdown-preview.tsx │ │ ├── select.tsx │ │ ├── theme-toggle.tsx │ │ └── toast.tsx │ ├── constants/ │ │ ├── defaults.ts │ │ └── skills.ts │ ├── hooks/ │ │ ├── use-consent.ts │ │ ├── use-local-storage.ts │ │ └── use-theme.ts │ ├── lib/ │ │ ├── analytics.ts │ │ ├── asset-path.ts │ │ ├── github-api.ts │ │ ├── markdown-generator.ts │ │ ├── storage.ts │ │ ├── store.ts │ │ └── validations.ts │ ├── markdown-pages/ │ │ ├── about.md │ │ ├── addons.md │ │ └── support.md │ ├── styles/ │ │ └── tailwind.css │ ├── test/ │ │ └── setup.ts │ └── types/ │ ├── profile.ts │ ├── skills.ts │ └── theme.ts ├── tailwind.config.js ├── tailwind.config.ts ├── tsconfig.json └── vitest.config.ts