A single-page website built with React and Vite.
| Layer | Technology |
|---|---|
| UI Library | React 19 |
| Build Tool | Vite 8 |
| Smooth Scroll | Lenis 1 |
| Animation | GSAP 3 + @gsap/react |
| Linting | ESLint 10 with eslint-plugin-react-hooks & eslint-plugin-react-refresh |
| Deployment | Vercel |
src/
├── assets/
├── components/
│ └── Sidebar.jsx
├── pages/
│ ├── Hero.jsx
│ ├── AboutUs.jsx
│ ├── Projects.jsx
│ └── JoinUs.jsx
├── App.jsx
└── main.jsx
npm install
npm run dev| Command | Description |
|---|---|
npm run dev |
Start local dev server with HMR |
npm run build |
Production build |
npm run preview |
Preview the production build locally |
npm run lint |
Run ESLint |