This web application calculates the returns on a Systematic Investment Plan (SIP). Built with Vite for fast development, React for a robust UI, and Tailwind CSS for modern and responsive styling.
- Real-time Calculation: Calculate SIP returns dynamically as you input data.
- Responsive Design: Built with Tailwind CSS, the app is responsive across devices.
- Fast and Lightweight: Powered by Vite for instant development server start and optimized builds.
Make sure you have the following installed:
-
Clone the repository:
git clone https://github.com/mounishvatti/sipreturnscalc.git cd sipreturnscalc
-
Install dependencies:
npm install
or
yarn
-
Start the development server:
npm run dev
or
yarn dev
-
Open your browser and navigate to
http://localhost:5173
.
- Enter the monthly SIP amount, the annual interest rate, and the investment duration.
- The app will calculate the expected returns instantly.
- Vite: Fast and optimized frontend tooling.
- React: JavaScript library for building user interfaces.
- Tailwind CSS: A utility-first CSS framework for rapid UI development.
sipreturnscalc/
├── public/ # Static assets
├── src/
│ ├── components/ # React components
│ ├── App.jsx # Main app component
│ ├── index.css # Tailwind CSS import
│ └── main.jsx
├── index.html # Main HTML template
├── package.json # Project metadata and dependencies
└── tailwind.config.js
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Open a Pull Request.