gitextract_csw6vtjg/ ├── .github/ │ └── workflows/ │ └── contributors.yaml ├── .gitignore ├── .vercel/ │ └── project.json ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── astro.config.mjs ├── package.json ├── src/ │ ├── components/ │ │ ├── AdevintaInfo.astro │ │ ├── BentoInfo.astro │ │ ├── CoolJobBackground.astro │ │ ├── CoolJobBrand.astro │ │ ├── CoolJobCard.astro │ │ ├── CoolJobs.astro │ │ ├── EmergentPositions.astro │ │ ├── FollowUs.astro │ │ ├── FollowUsLink.astro │ │ ├── Footer.astro │ │ ├── Header.astro │ │ ├── HeroSearch.astro │ │ ├── InfographicBody.astro │ │ ├── InfographicHeader.astro │ │ ├── InfographicModal.astro │ │ ├── InfographicTips.astro │ │ ├── KingsLeagueInfo.astro │ │ ├── LinksColumns.astro │ │ ├── LiteYoutube.astro │ │ ├── OportunidadesTikTok.astro │ │ ├── PreFooter.astro │ │ ├── SectionContainer.astro │ │ ├── SocialBest.astro │ │ ├── StandsInterviews.astro │ │ ├── Subtitle.astro │ │ ├── TiktokVideo.astro │ │ ├── YourNextJob.astro │ │ └── ui/ │ │ ├── Button.astro │ │ └── Icon.astro │ ├── const.ts │ ├── env.d.ts │ ├── icons/ │ │ ├── AppStore.astro │ │ ├── ChevronDown.astro │ │ ├── CloseIcon.astro │ │ ├── Facebook.astro │ │ ├── GooglePlay.astro │ │ ├── LeftArrow.astro │ │ ├── Play.astro │ │ ├── RightArrow.astro │ │ ├── Search.astro │ │ ├── Spinner.astro │ │ ├── TikTok.astro │ │ ├── Twitter.astro │ │ └── YouTube.astro │ ├── layouts/ │ │ └── Layout.astro │ ├── lib/ │ │ ├── generate-infojobs-keywords-url.ts │ │ ├── generate-infojobs-url.ts │ │ ├── get-ij-studies.ts │ │ ├── list-provinces-ids.ts │ │ ├── mocks.ts │ │ ├── query.ts │ │ └── queryKeywords.ts │ ├── pages/ │ │ └── index.astro │ └── types.ts ├── tailwind.config.mjs └── tsconfig.json