├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── enhancement-request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-comment-on-issue.yml │ └── auto-comment-pr-raise.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── backend ├── .env.example ├── Controllers │ ├── audio.controller.js │ └── auth.controller.js ├── Middlewares │ └── auth.middleware.js ├── Models │ └── user.model.js ├── README.md ├── Routes │ ├── api │ │ ├── audio.routes.js │ │ └── auth.routes.js │ └── index.js ├── Schemas │ └── user.schema.js ├── app.js ├── config │ └── db.js ├── package-lock.json ├── package.json └── utils │ └── helpers.js ├── frontend ├── .env.example ├── .eslintrc.cjs ├── README.md ├── database │ └── quotes.json ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── Chandragupta_Maurya_Empire.png │ ├── ai.svg │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── arthashastra.webp │ ├── chanakya-statue.jpg │ ├── chanakya.jpg │ ├── chanakya_and_chandragupta_maurya.jpg │ ├── e-book.jpeg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── home1.png │ ├── image.webp │ ├── logo.webp │ ├── secured.svg │ ├── site.webmanifest │ ├── takshashila.jpg │ ├── video.jpg │ └── vite.svg ├── src │ ├── App.jsx │ ├── common │ │ ├── page-animation.jsx │ │ └── session.jsx │ ├── components │ │ ├── Footer.jsx │ │ ├── InputBox.jsx │ │ ├── Navbar.jsx │ │ └── Quotes.jsx │ ├── index.css │ ├── main.jsx │ └── pages │ │ ├── 404.jsx │ │ ├── Audio.jsx │ │ ├── Home.jsx │ │ └── UserAuthForm.jsx ├── vercel.json └── vite.config.js └── package.json /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-comment-on-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.github/workflows/auto-comment-on-issue.yml -------------------------------------------------------------------------------- /.github/workflows/auto-comment-pr-raise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.github/workflows/auto-comment-pr-raise.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/Controllers/audio.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Controllers/audio.controller.js -------------------------------------------------------------------------------- /backend/Controllers/auth.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Controllers/auth.controller.js -------------------------------------------------------------------------------- /backend/Middlewares/auth.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Middlewares/auth.middleware.js -------------------------------------------------------------------------------- /backend/Models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Models/user.model.js -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/Routes/api/audio.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Routes/api/audio.routes.js -------------------------------------------------------------------------------- /backend/Routes/api/auth.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Routes/api/auth.routes.js -------------------------------------------------------------------------------- /backend/Routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Routes/index.js -------------------------------------------------------------------------------- /backend/Schemas/user.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/Schemas/user.schema.js -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/config/db.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/backend/utils/helpers.js -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/database/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/database/quotes.json -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/Chandragupta_Maurya_Empire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/Chandragupta_Maurya_Empire.png -------------------------------------------------------------------------------- /frontend/public/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/ai.svg -------------------------------------------------------------------------------- /frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/arthashastra.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/arthashastra.webp -------------------------------------------------------------------------------- /frontend/public/chanakya-statue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/chanakya-statue.jpg -------------------------------------------------------------------------------- /frontend/public/chanakya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/chanakya.jpg -------------------------------------------------------------------------------- /frontend/public/chanakya_and_chandragupta_maurya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/chanakya_and_chandragupta_maurya.jpg -------------------------------------------------------------------------------- /frontend/public/e-book.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/e-book.jpeg -------------------------------------------------------------------------------- /frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/home1.png -------------------------------------------------------------------------------- /frontend/public/image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/image.webp -------------------------------------------------------------------------------- /frontend/public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/logo.webp -------------------------------------------------------------------------------- /frontend/public/secured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/secured.svg -------------------------------------------------------------------------------- /frontend/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/site.webmanifest -------------------------------------------------------------------------------- /frontend/public/takshashila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/takshashila.jpg -------------------------------------------------------------------------------- /frontend/public/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/video.jpg -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/common/page-animation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/common/page-animation.jsx -------------------------------------------------------------------------------- /frontend/src/common/session.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/common/session.jsx -------------------------------------------------------------------------------- /frontend/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/components/Footer.jsx -------------------------------------------------------------------------------- /frontend/src/components/InputBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/components/InputBox.jsx -------------------------------------------------------------------------------- /frontend/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/components/Navbar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Quotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/components/Quotes.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/pages/404.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Audio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/pages/Audio.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/pages/Home.jsx -------------------------------------------------------------------------------- /frontend/src/pages/UserAuthForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/src/pages/UserAuthForm.jsx -------------------------------------------------------------------------------- /frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/vercel.json -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avdhesh-Varshney/chanakya-niti/HEAD/package.json --------------------------------------------------------------------------------