├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── public ├── tailwind-cdn.html └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ ├── profile-placeholder.jpeg │ └── react.svg ├── components │ ├── Dashboard.jsx │ ├── Login.jsx │ ├── Register.jsx │ ├── Welcome.jsx │ └── index.css ├── index.css └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/package.json -------------------------------------------------------------------------------- /public/tailwind-cdn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/public/tailwind-cdn.html -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/profile-placeholder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/assets/profile-placeholder.jpeg -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/components/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/components/Login.jsx -------------------------------------------------------------------------------- /src/components/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/components/Register.jsx -------------------------------------------------------------------------------- /src/components/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/components/Welcome.jsx -------------------------------------------------------------------------------- /src/components/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/components/index.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-pratyushpandey/Task2Educase/HEAD/vite.config.js --------------------------------------------------------------------------------