A modern, dark-themed frontend developer portfolio built with React, Vite, and Framer Motion.
portfolio/ ├── public/ │ └── favicon.svg ← browser tab icon ├── src/ │ ├── components/ ← reusable UI pieces │ │ ├── Button.jsx │ │ ├── Navbar.jsx │ │ ├── ProjectCard.jsx │ │ ├── SectionHeading.jsx │ │ └── SectionWrapper.jsx │ ├── hooks/ │ │ └── useScrollSpy.js ← active nav highlighting │ ├── sections/ ← one file per page section │ │ ├── Hero.jsx │ │ ├── About.jsx │ │ ├── Skills.jsx │ │ ├── Projects.jsx │ │ ├── Contact.jsx │ │ └── Footer.jsx │ ├── App.jsx ← assembles all sections │ ├── data.js ← edit your info here │ ├── index.css ← global styles │ └── main.jsx ← React entry point ├── index.html ├── tailwind.config.js ├── vite.config.js └── package.json
src/data.js — all sections pull content from there:
- Change your name, email, GitHub, LinkedIn
- Update your skill levels
- Add your projects
yarn
yarn dev
GitHub: https://github.com/Harsh6543/portfolio Live: https://harsh6543.github.io/portfolio
| Tech | Purpose |
|---|---|
| React 18 | UI components |
| Vite 5 | Dev server/build |
| CSS3 | Styling |
| Framer Motion | Animations |
npm run dev
npm run build