React + GSAP project
Live demo: https://k72.henilp.dev
k72 is a project built using React along with GSAP (GreenSock Animation Platform) to implement rich animations and interactive UI elements.
- Smooth animations powered by GSAP
- Component-based React architecture
- Responsive layout
- Simple and extendable setup
- React
- GSAP
- Vite (tooling)
- JavaScript / JSX
- CSS / styling
-
Clone this repository:
git clone https://github.com/Henil29/k72.git cd k72 -
Install dependencies:
npm install
-
Run development server:
npm run dev
-
Build for production:
npm run build
-
(Optional) Preview the production build locally:
npm run serve
Once the dev server is running, open your browser and go to http://localhost:3000 (or whichever port Vite assigns) to see the app.
You can add or modify React components and GSAP animations in the src/ directory. The entry point is src/main.jsx (or similar).
k72/
├── public/
│ └── index.html
├── src/
│ ├── components/
│ ├── styles/
│ ├── App.jsx
│ └── main.jsx
├── .gitignore
├── package.json
├── vite.config.js
└── README.md
public/— static HTML, images, favicon etc.src/— React source codecomponents/— reusable UI & animation componentsstyles/— CSS, SCSS or module stylesApp.jsx/main.jsx— application root and bootstrapping
Contributions are welcome! If you find a bug or want to add a feature:
- Fork the repository
- Create a new branch (
git checkout -b feature-name) - Make your changes and commit them
- Push to your fork and open a Pull Request
Please follow the existing code style and include clear commit messages.
This project is open source — feel free to use, modify, and distribute.