NEW

Summary

Directory Structure

Directory structure:
└── selectcode-apply/
    ├── README.md
    ├── ChallengeReport.md
    ├── docs/
    │   ├── next-sitemap.config.js
    │   ├── next.config.mjs
    │   ├── package.json
    │   ├── postcss.config.js
    │   ├── style.css
    │   ├── tailwind.config.js
    │   ├── theme.config.jsx
    │   ├── tsconfig.json
    │   ├── wrangler.toml
    │   ├── .npmrc
    │   ├── components/
    │   │   ├── features/
    │   │   │   ├── index.tsx
    │   │   │   ├── style.module.css
    │   │   │   └── themes-animation.tsx
    │   │   ├── icons/
    │   │   │   └── index.ts
    │   │   ├── salary/
    │   │   │   ├── SalaryCalculator.tsx
    │   │   │   └── salaryComponents.ts
    │   │   ├── screenshot/
    │   │   │   └── index.jsx
    │   │   ├── table/
    │   │   │   ├── index.tsx
    │   │   │   └── style.module.css
    │   │   ├── utils/
    │   │   │   └── shadow.jsx
    │   │   └── video/
    │   │       └── index.jsx
    │   ├── pages/
    │   │   ├── _app.mdx
    │   │   ├── _meta.json
    │   │   ├── challenges.mdx
    │   │   ├── faq.md
    │   │   ├── getting_started.mdx
    │   │   ├── home.mdx
    │   │   ├── index.mdx
    │   │   ├── index.module.css
    │   │   ├── salary.mdx
    │   │   └── challenges/
    │   │       ├── _meta.json
    │   │       ├── fullstack.md
    │   │       ├── micro.mdx
    │   │       ├── rag.md
    │   │       └── micro/
    │   │           ├── _meta.json
    │   │           ├── backend.md
    │   │           ├── backend/
    │   │           │   ├── _meta.json
    │   │           │   ├── fastapi.md
    │   │           │   ├── micronaut.md
    │   │           │   └── nestjs.md
    │   │           ├── computervision/
    │   │           │   ├── _meta.json
    │   │           │   ├── blob_detection.mdx
    │   │           │   ├── hand_3d.mdx
    │   │           │   ├── quiz.md
    │   │           │   └── use_case.mdx
    │   │           ├── deployment/
    │   │           │   ├── _meta.json
    │   │           │   ├── deployment_approaches.md
    │   │           │   ├── docker.md
    │   │           │   └── kubernetes.md
    │   │           └── frontend/
    │   │               ├── css.mdx
    │   │               └── react.md
    │   └── public/
    │       ├── robots.txt
    │       ├── sitemap-0.xml
    │       ├── sitemap.xml
    │       └── challenges/
    │           └── hand/
    │               └── point_cloud.gz
    └── .github/
        ├── dependabot.yml
        └── workflows/
            └── dependabotautomerge.yml

Files Content