├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── (quiz) │ ├── choice │ │ └── page.tsx │ └── quiz │ │ ├── [week] │ │ └── page.tsx │ │ └── all │ │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── data │ └── questions.ts ├── landing-page.tsx └── score-card-modal.tsx ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── Question.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/README.md -------------------------------------------------------------------------------- /app/(quiz)/choice/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/(quiz)/choice/page.tsx -------------------------------------------------------------------------------- /app/(quiz)/quiz/[week]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/(quiz)/quiz/[week]/page.tsx -------------------------------------------------------------------------------- /app/(quiz)/quiz/all/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/(quiz)/quiz/all/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/data/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/components/data/questions.ts -------------------------------------------------------------------------------- /components/landing-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/components/landing-page.tsx -------------------------------------------------------------------------------- /components/score-card-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/components/score-card-modal.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/Question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdhrxv/nptel/HEAD/types/Question.ts --------------------------------------------------------------------------------