Thanks 🙇🏻 for visiting my Profile ❤️!
👨💻 Recently worked on
👷♀️ Compiled | Build time atomic CSS-in-JS. Baked and ready to serve.Crowdsourcing Platform. Redesigned the entire frontend in NextJS (SSG only) and created an interop so that it works with the legacy codebase.Check out my pinned repositories on Github

import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { Profile, Email } from './components';
ReactDOM.render(
<>
<Profile type="LinkedIn" url="https://www.linkedin.com/in/pgmanutd" name="Prashant Goel" />
<Email address="prashantmanunited@gmail.com" provider="Gmail" />
<Profile type="Github" url="https://github.com/pgmanutd" name="pgmanutd" />
<Profile type="LeetCode" url="https://leetcode.com/pgmanutd" name="Prashant Goel" />
</>,
document.getElementById('want-to-connect')
);