├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── actions │ └── getVideos.ts ├── components │ ├── Modal.tsx │ ├── Navbar.tsx │ ├── Searchbar.tsx │ └── VideoCard.tsx ├── config.ts ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff ├── globals.css ├── hooks │ ├── generateQuestions.ts │ └── mcqQuestions.ts ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── test.png ├── layout.tsx ├── mcq │ └── page.tsx └── page.tsx ├── next.config.mjs ├── node-backend ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── postcss.config.mjs ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/getVideos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/actions/getVideos.ts -------------------------------------------------------------------------------- /app/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/components/Modal.tsx -------------------------------------------------------------------------------- /app/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/components/Navbar.tsx -------------------------------------------------------------------------------- /app/components/Searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/components/Searchbar.tsx -------------------------------------------------------------------------------- /app/components/VideoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/components/VideoCard.tsx -------------------------------------------------------------------------------- /app/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/config.ts -------------------------------------------------------------------------------- /app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/hooks/generateQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/hooks/generateQuestions.ts -------------------------------------------------------------------------------- /app/hooks/mcqQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/hooks/mcqQuestions.ts -------------------------------------------------------------------------------- /app/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/images/1.png -------------------------------------------------------------------------------- /app/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/images/2.png -------------------------------------------------------------------------------- /app/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/images/3.png -------------------------------------------------------------------------------- /app/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/images/test.png -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/mcq/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/mcq/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/app/page.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/next.config.mjs -------------------------------------------------------------------------------- /node-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/.gitignore -------------------------------------------------------------------------------- /node-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/package-lock.json -------------------------------------------------------------------------------- /node-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/package.json -------------------------------------------------------------------------------- /node-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/src/index.ts -------------------------------------------------------------------------------- /node-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/tsconfig.json -------------------------------------------------------------------------------- /node-backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/node-backend/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheninthjr/ai-learning-platform/HEAD/yarn.lock --------------------------------------------------------------------------------