├── .eslintrc.cjs ├── .gitignore ├── .hintrc ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public ├── robots.txt ├── sitemap.xml └── vite.svg ├── src ├── App.jsx ├── assets │ ├── contact.svg │ └── logo.svg ├── components │ ├── Contact.jsx │ ├── IntSection.jsx │ ├── Intro.css │ ├── Intro.jsx │ ├── MainNavbar.jsx │ ├── Section.jsx │ ├── chatbot │ │ └── Chat.jsx │ ├── core │ │ ├── Footer.jsx │ │ ├── Loading.jsx │ │ ├── Navbar.jsx │ │ └── btn.jsx │ └── landing page │ │ └── Navbarm.jsx ├── context │ └── apiContext.jsx ├── index.css ├── main.jsx ├── pages │ ├── ErrorPage.jsx │ ├── FAQS │ │ └── Faqs.jsx │ ├── Homepage.jsx │ ├── cheatsheet │ │ └── Cheatsheet.jsx │ ├── community │ │ └── Community.jsx │ ├── dsproblem │ │ └── DSProblem.jsx │ ├── interview │ │ ├── ChallengeDetail.jsx │ │ ├── InterviewPrep.jsx │ │ └── machineCoding.jsx │ ├── playground │ │ ├── Playground.jsx │ │ └── playground.css │ ├── products │ │ └── product.jsx │ ├── quizzes │ │ └── Quiz.jsx │ ├── terms │ │ ├── Terms.jsx │ │ └── terms.css │ └── upcoming.jsx └── styles.js ├── tailwind.config.js ├── vercel.json └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/.hintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/Contributing.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/assets/contact.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/Contact.jsx -------------------------------------------------------------------------------- /src/components/IntSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/IntSection.jsx -------------------------------------------------------------------------------- /src/components/Intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/Intro.css -------------------------------------------------------------------------------- /src/components/Intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/Intro.jsx -------------------------------------------------------------------------------- /src/components/MainNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/MainNavbar.jsx -------------------------------------------------------------------------------- /src/components/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/Section.jsx -------------------------------------------------------------------------------- /src/components/chatbot/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/chatbot/Chat.jsx -------------------------------------------------------------------------------- /src/components/core/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/core/Footer.jsx -------------------------------------------------------------------------------- /src/components/core/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/core/Loading.jsx -------------------------------------------------------------------------------- /src/components/core/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/core/Navbar.jsx -------------------------------------------------------------------------------- /src/components/core/btn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/core/btn.jsx -------------------------------------------------------------------------------- /src/components/landing page/Navbarm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/components/landing page/Navbarm.jsx -------------------------------------------------------------------------------- /src/context/apiContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/context/apiContext.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/ErrorPage.jsx -------------------------------------------------------------------------------- /src/pages/FAQS/Faqs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/FAQS/Faqs.jsx -------------------------------------------------------------------------------- /src/pages/Homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/Homepage.jsx -------------------------------------------------------------------------------- /src/pages/cheatsheet/Cheatsheet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/cheatsheet/Cheatsheet.jsx -------------------------------------------------------------------------------- /src/pages/community/Community.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/community/Community.jsx -------------------------------------------------------------------------------- /src/pages/dsproblem/DSProblem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/dsproblem/DSProblem.jsx -------------------------------------------------------------------------------- /src/pages/interview/ChallengeDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/interview/ChallengeDetail.jsx -------------------------------------------------------------------------------- /src/pages/interview/InterviewPrep.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/interview/InterviewPrep.jsx -------------------------------------------------------------------------------- /src/pages/interview/machineCoding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/interview/machineCoding.jsx -------------------------------------------------------------------------------- /src/pages/playground/Playground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/playground/Playground.jsx -------------------------------------------------------------------------------- /src/pages/playground/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/playground/playground.css -------------------------------------------------------------------------------- /src/pages/products/product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/products/product.jsx -------------------------------------------------------------------------------- /src/pages/quizzes/Quiz.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/quizzes/Quiz.jsx -------------------------------------------------------------------------------- /src/pages/terms/Terms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/terms/Terms.jsx -------------------------------------------------------------------------------- /src/pages/terms/terms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/terms/terms.css -------------------------------------------------------------------------------- /src/pages/upcoming.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/pages/upcoming.jsx -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/src/styles.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunatapadkar/codeteria/HEAD/vite.config.js --------------------------------------------------------------------------------