This is a Vite + React project template to quickly set up a React application with Vite, a fast build tool for modern web development.
- Node.js: Ensure you have Node.js installed. You can download it from nodejs.org.
- npm or Yarn: npm comes with Node.js; alternatively, you can install Yarn as an alternative package manager.
Follow these steps to set up and run the project locally.
git clone git@github.com:divikshrivastava/EventManagement.git
cd EM-FrontendRun the following command to install project dependencies:
npm install
# or
yarn installAfter installing the dependencies, start the development server by running:
npm run dev
# or
yarn devVite will start the server, and you should see output in the terminal indicating the server is running at http://localhost:5173 (default port). You can open this link in your browser to view the project.
To add a new page to the application, create a new component file in the src/pages directory.
The project currently includes the following pages in src/pages:
- LoginPage.jsx
- OrganizerPage.jsx
- EventPage.jsx
- AttendeePage.jsx
- BadgePage.jsx