A responsive and interactive website for Amrita - Model United Nations 2025 built using Next.js, TypeScript, and Tailwind CSS.
🚀 Tech Stack
- Framework: Next.js
- Language: TypeScript (TSX)
- Styling: Tailwind CSS
- Animations: Framer Motion
📦 Getting Started
Follow the steps below to set up and run the project locally.
-
Clone the Repository
git clone [https://github.com/SudharsanSaravanan/mun2025.git](https://github.com/SudharsanSaravanan/mun2025.git) cd mun2025 -
Install Dependencies
This project uses
npmfor package management. Run the following commands in the project directory to install the necessary dependencies:npm install npm install react-tilt framer-motion --legacy-peer-deps
npm install: Installs the core dependencies required for the Next.js project, including React, Next.js, and Tailwind CSS.npm install react-tilt framer-motion --legacy-peer-deps: Installs thereact-tiltlibrary for interactive tilt effects andframer-motionfor animations. The--legacy-peer-depsflag is included to handle potential peer dependency conflicts that might arise with older versions of these libraries.
-
Run the Development Server
Once the dependencies are installed, you can start the Next.js development server using the following command:
npm run dev
This command will start the development server, and you can view the website in your browser, typically at
http://localhost:3000. Changes you make to the code will be automatically reloaded in the browser.