📌 Steps to Fork and Set Up the Project
1️⃣ Fork the Repository
-
Go to the GitHub repository: Project Repository
-
Click on the Fork button at the top-right corner.
-
This will create a copy of the repository in your GitHub account.
2️⃣ Clone the Forked Repository
-
Navigate to your forked repository on GitHub.
-
Click on the Code button and copy the HTTPS or SSH link.
-
Open your terminal and run:
git clone https://github.com/your-username/your-repository.git
- Change to the project directory:
cd your-repository
3️⃣ Install Dependencies
Make sure you have Node.js installed. If not, download and install it from Node.js official website.
1.Install all required dependencies:
npm install
4️⃣ Start the Development Server
1.Run the project in development mode:
npm run dev
- The app will be available at:
http://localhost:3000/
🎨 Tailwind CSS Setup
This project uses Tailwind CSS for styling. If you need to modify styles, edit the tailwind.config.js file and use Tailwind utility classes in your components.
📊 Using Recharts
Recharts is already installed and used in this project for creating charts. If you want to add a new chart, import components like this:
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
You can check the official Recharts documentation on their official page.
💡 Contributing
- Create a new branch for your changes:
git checkout -b feature-branch
- Make your modifications and commit them:
git add .
git commit -m "Describe your changes"
- Push to your fork:
git push origin feature-branch
- Open a Pull Request from your forked repository to the original repository.
⭐ If you like this project, make sure to star the repo!
✨ Happy Coding! 🚀