Website link: sureshmurali.github.io
⭐⭐⭐⭐⭐ Adrian Twarog's Portfolio Review - "One of the best portfolios I've ever seen!"
How to Build a Great Developer Portfolio - "Suresh Murali created a design that you can feel" - Featured as an exemplary portfolio for UI/UX design.
Web Developer Portfolio: The Definitive Guide - "Clean and inspired by a small Cupertino company" - Highlighted for aesthetic influence and design principles.
CSDN Blog – 前端设计设计及代码收集 - Listed among 15 exemplary front-end developer portfolios, showcasing work to a Chinese-speaking developer audience.
Scribd Document - Portfolios - Included in a compilation of notable GitHub-hosted developer portfolios.
- GSAP Forum - Parallax effect implementation discussed as a reference
- Reddit r/CodingHelp - Portfolio used as reference for fixed section scrolling implementation
- Node.js: v22.13.0
- NPM: v9.5.1
- Yarn: v1.22.22
- Vite: v5.0.10
- React: v18.2.0
- React DOM: v18.2.0
- styled-components: v4.4.1
- react-responsive: v9.0.0
This project uses a three-branch workflow:
develop- Active development branch for ongoing workmain- Production-ready code, stable releases onlygh-pages- Deployment branch (auto-generated, do not edit manually)
-
Clone the repository
git clone https://github.com/sureshmurali/My-Portfolio.git cd My-Portfolio -
Install dependencies
yarn install
-
Start development server
yarn dev
The site will be available at
http://localhost:5173 -
Make changes on the
developbranchgit checkout develop # Make your changes git add . git commit -m "Your commit message" git push origin develop
Important: Deployment only works from the main branch. The deploy script will automatically check and prevent deployments from other branches.
-
Merge
developintomaingit checkout main git merge develop git push origin main
-
Build the production bundle
yarn build
This creates an optimized production build in the
distfolder. -
Deploy to GitHub Pages
yarn deploy
This pushes the
distfolder to thegh-pagesbranch and makes it live. -
Verify deployment Your changes will be live at sureshmurali.github.io within a few minutes.
yarn dev- Start development serveryarn build- Create production buildyarn deploy- Deploy to GitHub Pages (main branch only)yarn reset- Clean install (removes node_modules and dist, then reinstalls)
The MIT License (MIT)
Copyright (c) 2025 Suresh Murali
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
