I am known to
Transforming Concepts into Seamless User Experiences
What I Bring to the Table

I constantly try to improve
My Tech Stack
ReactJS
Advanced
Redux
Intermediate
NextJS
Intermediate
JavaScript
Advanced
TailwindCSS
Advanced
TypeScript
Advanced
GraphQL
Intermediate
NodeJS
Intermediate
GitHub
Advanced
and
My Product Skills
Team Mentoring
Intermediate
X-Functional Collab
Intermediate
Roadmap Planning
Intermediate
Analytics-Driven Dev
Intermediate
JIRA
Advanced
Confluence
Advanced
Market Research
Beginneer
User Persona
Beginneer
...and many more
What my former colleagues say about me?



Richard Smullen
CEO at Pypestream Inc.
Yash is a very talented and highly productive product developer and team leader. He is passionate about technology and understands the inner workings of organizations, and their multitude of layers and organizations. He navigates it all well and is a very comfortable in fast paced environments. Yash grew from a junior product developer to an overall product Manager, managing a team and delivering great outcomes. He is dependable and very reliable.
Some other pet projects of mine.
What am I proud of?
Done built a UI
component library
A lightweight, high-performance UI library designed for modern web applications. Built with performance and developer experience in mind using React, TailwindCSS and Motion.
1
2const ButtonComponent = () => {
3 const [count, setCount] = React.useState(0);
4
5 const handleClick = () => {
6 setCount(prev => prev + 1);
7 };
8
9 return (
10 <div className="p-4 border rounded-lg">
11 <h2 className="text-xl font-bold mb-4">Fights Counter</h2>
12 <p className="mb-2">Fight Club Fights Count: {count}</p>
13 <button
14 onClick={handleClick}
15 className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600"
16 >
17 Increment
18 </button>
19 </div>
20 );
21};
22