├── .gitignore ├── README.md ├── backend ├── .env ├── audio │ └── 72989f84-92d1-470b-b5a9-f0ffafd193e5.wav ├── package-lock.json ├── package.json ├── server.js └── videos │ ├── video.mp4 │ └── video1.mp4 ├── eslint.config.js ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ ├── react.svg │ └── video.mp4 ├── context │ ├── AppContext.jsx │ └── VideoContext.jsx ├── data │ └── approaches.js ├── index.css ├── main.jsx ├── pages │ ├── HomePage.css │ └── HomePage.jsx ├── section │ ├── DSAExplanationPage.jsx │ ├── ExplanationSection.jsx │ ├── Hero.jsx │ ├── Navbar.jsx │ ├── QuestionInputForm.jsx │ ├── SearchInput.jsx │ └── VideoSection.jsx └── services │ └── api.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/audio/72989f84-92d1-470b-b5a9-f0ffafd193e5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/audio/72989f84-92d1-470b-b5a9-f0ffafd193e5.wav -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/videos/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/videos/video.mp4 -------------------------------------------------------------------------------- /backend/videos/video1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/backend/videos/video1.mp4 -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/assets/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/assets/video.mp4 -------------------------------------------------------------------------------- /src/context/AppContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/context/AppContext.jsx -------------------------------------------------------------------------------- /src/context/VideoContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/context/VideoContext.jsx -------------------------------------------------------------------------------- /src/data/approaches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/data/approaches.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/HomePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/pages/HomePage.css -------------------------------------------------------------------------------- /src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /src/section/DSAExplanationPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/DSAExplanationPage.jsx -------------------------------------------------------------------------------- /src/section/ExplanationSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/ExplanationSection.jsx -------------------------------------------------------------------------------- /src/section/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/Hero.jsx -------------------------------------------------------------------------------- /src/section/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/Navbar.jsx -------------------------------------------------------------------------------- /src/section/QuestionInputForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/QuestionInputForm.jsx -------------------------------------------------------------------------------- /src/section/SearchInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/SearchInput.jsx -------------------------------------------------------------------------------- /src/section/VideoSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/section/VideoSection.jsx -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/src/services/api.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-R-P-I-T-JAIN/Code2Concept/HEAD/vite.config.js --------------------------------------------------------------------------------